aboutsummaryrefslogtreecommitdiff
path: root/src/Testing.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/Testing.kt')
-rw-r--r--src/Testing.kt13
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