Files
highground-fork/src/lexer/lexer.sols

16 lines
210 B
Plaintext
Raw Normal View History

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