12 lines
108 B
Plaintext
12 lines
108 B
Plaintext
|
|
x = 0
|
||
|
|
while x < 10:
|
||
|
|
x = x + 1
|
||
|
|
|
||
|
|
if x > 9:
|
||
|
|
println "fin"
|
||
|
|
|
||
|
|
|
||
|
|
x = "a"
|
||
|
|
y = x * 1
|
||
|
|
z = y + 2
|
||
|
|
println "a" + z
|