forked from solstice/solstice
16 lines
210 B
Plaintext
16 lines
210 B
Plaintext
|
|
use collections
|
||
|
|
|
||
|
|
struct SolsLexer {
|
||
|
|
input = ""
|
||
|
|
current = 0
|
||
|
|
|
||
|
|
constructor(string input) {
|
||
|
|
self.input = input
|
||
|
|
}
|
||
|
|
|
||
|
|
def lex() List {
|
||
|
|
output = List(1)
|
||
|
|
|
||
|
|
return output
|
||
|
|
}
|
||
|
|
}
|