Files
j-lang/projects/while.j

5 lines
53 B
Plaintext
Raw Normal View History

x = 0
while x < 1000000000:
x = x + 1
println(x)