From a382841dc7d554b2ba3920d52f73e4cec428743e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 12 Aug 2019 16:01:51 +0200 Subject: Basic parser functions --- src/Testing.kt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/Testing.kt (limited to 'src/Testing.kt') 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 -- cgit v1.2.3