aboutsummaryrefslogtreecommitdiff
path: root/src/Testing.kt
blob: d1e6b1787c12b9edef449a04b216f0edcaac47cb (plain) (blame)
1
2
3
4
5
6
7
8
class Testing {
    init {
        val source = Loader("/home/melvin/coding/run/example.run").load()
        val tokens = Lexical().analyze(source)
        Syntax().check(tokens)
        print(source)
    }
}