Files
j-lang/projects/while.j

5 lines
60 B
Plaintext
Raw Normal View History

x = 0
while x < 10000000:
x = x + 1
print(x)
debugHeap()