This website requires JavaScript.
Explore
Help
Sign In
r4
/
lang
Watch
1
Star
0
Fork
0
You've already forked lang
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
a8be4540b1
lang
/
example.script
12 lines
88 B
Plaintext
Raw
Normal View
History
Unescape
Escape
very basic while loop
2021-12-21 15:02:53 +01:00
x := 1
init
2021-12-21 01:18:22 +01:00
y := 1
i := 60
make while loops more efficient and improve expression parsing
2021-12-21 17:09:03 +01:00
while i + 1 {
init
2021-12-21 01:18:22 +01:00
z := x + y
y = x
x = z
very basic while loop
2021-12-21 15:02:53 +01:00
//print(z)
init
2021-12-21 01:18:22 +01:00
i = i - 1
very basic while loop
2021-12-21 15:02:53 +01:00
}
Reference in New Issue
Copy Permalink