mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
13 lines
129 B
Plaintext
13 lines
129 B
Plaintext
fn doA() {
|
|
print "doA()";
|
|
return true;
|
|
}
|
|
|
|
fn doB() {
|
|
print "doB()";
|
|
return true;
|
|
}
|
|
|
|
if (doA() || doB()) {
|
|
print "success";
|
|
} |