From d640066d9390e3ba1abca183db9263b775c000d4 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 2 Mar 2019 22:40:34 +0100 Subject: Readd requirement for semicolon, makes things much simpler (for user as well) --- tests/main.amal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') 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 { -- cgit v1.2.3