mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
//explicitly support && and || short circuits
|
|
|
|
assert 1 && 2 == 2, "&& short-circuit failed";
|
|
|
|
assert 1 || 2 == 1, "|| short-circuit failed";
|
|
|
|
|
|
print "All good";
|
|
|