diff options
author | Marvin Borner | 2019-08-12 18:41:05 +0200 |
---|---|---|
committer | Marvin Borner | 2019-08-12 18:41:05 +0200 |
commit | d9d9fbdd9d13a5eadc5c57ac19405983cfe11b2e (patch) | |
tree | bd0df880a66ae490384aa48ab2688632e73fbf1e /src/Testing.kt | |
parent | bf5882f74f79a15dc5688e813e7d42ae62a44263 (diff) |
Improved exception handling
Diffstat (limited to 'src/Testing.kt')
-rw-r--r-- | src/Testing.kt | 2 |
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") } |