class Testing {
    init {
        val source = Loader("/home/melvin/coding/run/example.run").load()
        val tokens = Lexical().analyze(source)
        Syntax().check(tokens)
        print(source)
    }
}