Thusly
Playground
Example 1
Loops
Example 2
Selection
Example 3
Block
Bytecode
Execution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Type some code here!
// Bounded loop
foreach
value
in
0
..
3
@out
value
end
// Unbounded loop
var
i:
0
while
i <
3
{i +:
1
}
@out
i
end