reorganize examples

This commit is contained in:
r4
2021-12-25 12:45:27 +01:00
parent b58810e822
commit dd67a1bf5d
3 changed files with 1 additions and 0 deletions

12
examples/fib.script Normal file
View File

@@ -0,0 +1,12 @@
x := 1
y := 1
i := 60
while i {
z := x + y
y = x
x = z
print(z)
i = i - 1
}