Initial commit

This commit is contained in:
2023-09-17 08:07:19 -04:00
commit acf15f81fe
29 changed files with 2406 additions and 0 deletions
@@ -0,0 +1 @@
1 + 3 -- -1
@@ -0,0 +1 @@
val x = y; z
@@ -0,0 +1 @@
val x = 0; x = 1
@@ -0,0 +1 @@
1 + 3 4
@@ -0,0 +1 @@
if (0 == 0) 2
@@ -0,0 +1 @@
val x == 4; x
+5
View File
@@ -0,0 +1,5 @@
while (2 + 2) {
1
};
2
@@ -0,0 +1,2 @@
var x = 0
x + 1
@@ -0,0 +1,2 @@
// Test
&
+1
View File
@@ -0,0 +1 @@
1* -4 + 4/2
+1
View File
@@ -0,0 +1 @@
if (2 > 4) 1 + 4 else 4
+1
View File
@@ -0,0 +1 @@
val x = 0; x
+7
View File
@@ -0,0 +1,7 @@
var x = 2;
var y = 0;
while ({ if (y < 3) true else y < 4}) {
x = x * x;
y = y + 1
};
x
+1
View File
@@ -0,0 +1 @@
var x = 0; x = (x = x + 2) - 1