mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 08:46:53 +08:00
6 lines
70 B
ChaiScript
6 lines
70 B
ChaiScript
var i = 0
|
|
while (i < 10) {
|
|
print("i: " + i.to_string())
|
|
i = i + 1
|
|
}
|