7 lines
69 B
Plaintext
7 lines
69 B
Plaintext
|
|
x = 0
|
||
|
|
while x < 10:
|
||
|
|
x = x + 1
|
||
|
|
|
||
|
|
if x > 1000000:
|
||
|
|
println("OK")
|