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

15
argtype.go Normal file
View File

@@ -0,0 +1,15 @@
package parser
type ArgType int
const (
NoneType ArgType = iota
StringType
IntType
BoolType
Float32Type
Float64Type
MatchType
)