need to fix some solstice bugs before i can start on lexer

This commit is contained in:
2026-04-13 13:00:51 +10:00
parent 98c8775208
commit f67c045845
2 changed files with 16 additions and 49 deletions

16
src/lexer/lexer.sols Normal file
View File

@@ -0,0 +1,16 @@
use collections
struct SolsLexer {
input = ""
current = 0
constructor(string input) {
self.input = input
}
def lex() List {
output = List(1)
return output
}
}