15 lines
189 B
ChaiScript
15 lines
189 B
ChaiScript
auto i = 3
|
|
auto b = false
|
|
if (i == 2) {
|
|
assert_equal(false, true)
|
|
}
|
|
else if (i == 4) {
|
|
assert_equal(false, true)
|
|
}
|
|
else {
|
|
assert_equal(true, true)
|
|
b = true
|
|
}
|
|
|
|
assert_equal(true, b)
|