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
10d436107c
lang
/
example.script
12 lines
84 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
while i {
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