This commit is contained in:
r4
2021-12-21 01:18:22 +01:00
parent ab1887c28d
commit 21694f98ac
20 changed files with 1615 additions and 0 deletions

16
example.script Normal file
View File

@@ -0,0 +1,16 @@
a := 1
b := 1 - 2 * 2 + 5
c := a + b * 2 * b
d := a + 4 * b * a
/*x := 1
y := 1
i := 60
while i {
z := x + y
y = x
x = z
print(z)
i = i - 1
}*/