mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
22 lines
254 B
ChaiScript
22 lines
254 B
ChaiScript
|
|
def shouldnt_execute()
|
|
{
|
|
assert_true(false)
|
|
}
|
|
|
|
|
|
|
|
if (false && shouldnt_execute()) {
|
|
}
|
|
|
|
if (true || shouldnt_execute()) {
|
|
}
|
|
|
|
|
|
if (false || false || false || true || shouldnt_execute()) {
|
|
}
|
|
|
|
|
|
if (true && true && true && false && shouldnt_execute()) {
|
|
}
|