From 5e240bdab90c45f935e7d2b33181de13295e7e6b Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 2 Mar 2019 21:20:33 +0100 Subject: Add string, variable and number. Fix identifier match against const and var --- tests/main.amal | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/main.amal b/tests/main.amal index 0cd7154..68ddc47 100644 --- a/tests/main.amal +++ b/tests/main.amal @@ -4,7 +4,8 @@ const main = () { var hello = () { } - const value = "hello, world!"; + const value = "hello" + print(value, "world", 356) } const print = () { -- cgit v1.2.3