class Testing {
    init {
        val source = Loader("/home/melvin/coding/runc/example.run").preprocess()
        val statements = Lexical().analyze(source)
        Syntax().check(statements)
    }
}