add builtin functions

This commit is contained in:
r4
2021-12-22 16:09:52 +01:00
parent 41a5dba208
commit 5dd15ce9f1
6 changed files with 239 additions and 41 deletions

View File

@@ -1,4 +1,4 @@
x := 1
/*x := 1
y := 1
i := 60
@@ -6,6 +6,12 @@ while i {
z := x + y
y = x
x = z
//print(z)
print(z)
i = i - 1
}
}*/
f := 2.0
a := int(pow(f, 2.0)) + 1
print(a)