diff options
Diffstat (limited to 'src/runMain/kotlin/Testing.kt')
-rw-r--r-- | src/runMain/kotlin/Testing.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/runMain/kotlin/Testing.kt b/src/runMain/kotlin/Testing.kt new file mode 100644 index 0000000..5ee9560 --- /dev/null +++ b/src/runMain/kotlin/Testing.kt @@ -0,0 +1,7 @@ +class Testing { + init { + val source = Loader("/home/melvin/coding/run/example.run").load() + val tokens = Lexical().analyze(source) + Syntax().check(tokens) + } +}
\ No newline at end of file |