mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
9 lines
77 B
ChaiScript
9 lines
77 B
ChaiScript
var i = 3
|
|
if (i == 2) {
|
|
print("2")
|
|
}
|
|
else {
|
|
print("other")
|
|
}
|
|
print("done")
|