japl/tests/japl/for.jpl

11 lines
130 B
Plaintext

//[Test: for]
//[source: mixed]
for (var x = 0; x < 2; x = x + 1)
{
print(x);
//stdout:0
//stdout:1
}
//[end]
//[end]