class Syntax { fun check(tokens: MutableList>): Boolean { for (token in tokens) { print(token) } return true } }