quakeforge/doc/gib/if-chain.gib

7 lines
167 B
Plaintext

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.
}