initial commit

This commit is contained in:
billsun
2023-08-31 18:39:41 +00:00
commit 8e8c90ec38
30 changed files with 1900 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
1 + 3 -- -1
@@ -0,0 +1 @@
val x = y; z
@@ -0,0 +1 @@
val x = 0; x = 1
+1
View File
@@ -0,0 +1 @@
1 + 3 4
+1
View File
@@ -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
+2
View File
@@ -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 (y < 3) {
val dummy = x = x * x;
y = y + 1
};
x
+1
View File
@@ -0,0 +1 @@
var x = 0; x = (x = x + 2) - 1