aboutsummaryrefslogtreecommitdiff
path: root/src/Testing.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/Testing.kt')
-rw-r--r--src/Testing.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Testing.kt b/src/Testing.kt
index 0b16145..4e4ec0d 100644
--- a/src/Testing.kt
+++ b/src/Testing.kt
@@ -4,7 +4,7 @@ class Testing {
val tokens = Lexical().analyze(source)
for (token in tokens) {
print(token.first)
- print("\n")
+ print(" => ")
print(token.second)
print("\n")
}