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