diff options
author | Marvin Borner | 2019-08-12 16:01:51 +0200 |
---|---|---|
committer | Marvin Borner | 2019-08-12 16:01:51 +0200 |
commit | a382841dc7d554b2ba3920d52f73e4cec428743e (patch) | |
tree | 536035f23c3d0d1ced960372b297a4869621c595 /src/Testing.kt |
Basic parser functions
Diffstat (limited to 'src/Testing.kt')
-rw-r--r-- | src/Testing.kt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Testing.kt b/src/Testing.kt new file mode 100644 index 0000000..0b16145 --- /dev/null +++ b/src/Testing.kt @@ -0,0 +1,13 @@ +class Testing { + init { + val source = Loader("/home/melvin/coding/run/example.run").load() + val tokens = Lexical().analyze(source) + for (token in tokens) { + print(token.first) + print("\n") + print(token.second) + print("\n") + } + print(source) + } +}
\ No newline at end of file |