6 lines
72 B
ChaiScript
6 lines
72 B
ChaiScript
var i = 0
|
|
while (i < 10) {
|
|
print("i: " + i.to_string())
|
|
i = i + 1
|
|
}
|