6 lines
No EOL
60 B
Python
6 lines
No EOL
60 B
Python
i = 0
|
|
while (i < 10) {
|
|
alert(i)
|
|
i = i + 1
|
|
}
|
|
alert("Fin") |