blob: a8aa28817444d98c8e733c0799e9eef159746e4f (
plain) (
blame)
1
2
3
4
5
6
7
|
class Testing {
init {
val source = Loader("/home/melvin/coding/runc/example.run").preprocess()
val statements = Lexical().analyze(source)
Syntax().check(statements)
}
}
|