aboutsummaryrefslogtreecommitdiff
path: root/src/Testing.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/Testing.kt')
-rw-r--r--src/Testing.kt7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Testing.kt b/src/Testing.kt
index 4e4ec0d..d1e6b17 100644
--- a/src/Testing.kt
+++ b/src/Testing.kt
@@ -2,12 +2,7 @@ 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(" => ")
- print(token.second)
- print("\n")
- }
+ Syntax().check(tokens)
print(source)
}
} \ No newline at end of file