aboutsummaryrefslogtreecommitdiff
path: root/src/Syntax.kt
blob: 7d7ab9da3db712dd3d9b46a2309c3e66400d81ac (plain) (blame)
1
2
3
4
5
6
7
class Syntax {
    fun check(tokens: MutableList<Pair<String, TokenType>>) {
        for (token in tokens) {
            print(token)
        }
    }
}