8 lines
66 B
ChaiScript
8 lines
66 B
ChaiScript
var i = 0
|
|
while (i < 10) {
|
|
if (++i == 5) {
|
|
break
|
|
}
|
|
}
|
|
print(i)
|