binary operations work now

This commit is contained in:
dfsek
2020-12-21 02:01:42 -07:00
parent adc5f0becc
commit 8a7499d874
11 changed files with 109 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
test("hello", 2);
test("hello" + 3 + "gdfg", 2 + 1.2);
if("true") {
test("fdsgdf", 3.4);
if(true) {
test("fdsgdf" + 2, 3.4);
}