started work on lexer

This commit is contained in:
SpookyDervish
2025-10-13 06:55:35 +11:00
parent 6da4f73ffb
commit 07ca0fcc32
7 changed files with 193 additions and 6 deletions

View File

@@ -6,8 +6,10 @@ myBoolean: Bool = true
myString: String = "Hello!\n"
myList: List = [1, "hi", true, [1, 2, 3], 0.789]
write(String(myInt))
write(String(myDecimal))
write(String(myBoolean))
write(myString)
write(String(myList))
MY_CONSTANT: Const(String) = "foo bar"
print(String(myInt))
print(String(myDecimal))
print(String(myBoolean))
print(myString)
print(String(myList))