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()) {
|
|
}
|