1 2 3 4 5 6 7 8
class Syntax { fun check(tokens: MutableList<Pair<String, TokenType>>): Boolean { for (token in tokens) { print(token) } return true } }