quakeforge/doc/gib/if-chain.gib
2003-02-23 03:20:53 +00:00

7 lines
No EOL
167 B
Text

if 0 {
echo The first condition is true.
} else if 1 {
echo The first condition is false but the second is true.
} else {
echo Neither condition is true.
}