This website requires JavaScript.
Explore
Help
Sign In
trimill
/
complexpr
Watch
1
Star
0
Fork
You've already forked complexpr
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
1327dc9569
complexpr
/
examples
/
fib.cxpr
10 lines
108 B
Text
Raw
Normal View
History
Unescape
Escape
added comparisons, builtin functions, while loops
2022-09-09 20:08:40 +00:00
let x = 0;
let y = 0;
let z = 1;
while z < 1000000 {
x = y + z;
z = y;
y = x;
println(z);
added functions (they are not good yet)
2022-09-12 20:53:04 +00:00
}
Reference in a new issue
Copy permalink