fixed bug and changed if-else syntax

This commit is contained in:
cozis
2021-11-02 11:57:11 +00:00
parent ca55816a23
commit 51083ee090
2 changed files with 64 additions and 16 deletions
+4 -3
View File
@@ -1,8 +1,9 @@
p = (true);
p = (false);
if p
(a = 1);
if p:
a = 1;
else
a = 2;
print(a);
return a;