Made change

This commit is contained in:
Tristan Ancelet
2026-02-27 14:47:12 -06:00
commit ff579dba44
11 changed files with 794 additions and 0 deletions

5
regex.go Normal file
View File

@@ -0,0 +1,5 @@
package parser
var flagRegex = "^-+[a-z-]+$"
var intRegex = "^[0-9]+$"
var floatRegex = "^[0-9]+(.[0-9]+)?$"