aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-03-02 22:40:34 +0100
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commitd640066d9390e3ba1abca183db9263b775c000d4 (patch)
tree4389abf1244ab930a225e4c33b2b5071d4d0d70f /tests
parentaf74ddb119e3c5167a10bf5468af3960c8db42c0 (diff)
Readd requirement for semicolon, makes things much simpler (for user as well)
Diffstat (limited to 'tests')
-rw-r--r--tests/main.amal6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/main.amal b/tests/main.amal
index 955806f..26da7d6 100644
--- a/tests/main.amal
+++ b/tests/main.amal
@@ -1,11 +1,11 @@
-const io = @import("tests/io.amal")
+const io = @import("tests/io.amal");
const main = fn {
var hello = fn {
}
- const value = "hello"
- print(value, "world", 356)
+ const value = "hello";
+ print(value, "world", 356);
}
const print = fn {