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