boolean system

This commit is contained in:
Aidan 2020-06-28 20:06:55 -07:00
parent e7d25057f6
commit 89d6a1013b
No known key found for this signature in database
GPG key ID: 327711E983899316
5 changed files with 209 additions and 1 deletions

View file

@ -28,6 +28,7 @@ const (
STRING Token_t = iota
NUMBER Token_t = iota
SYMBOL Token_t = iota
BOOL Token_t = iota
)
type Token struct {