quakeforge/doc/gib/if-chain.gib

7 lines
167 B
Plaintext
Raw Normal View History

2003-02-23 03:20:53 +00:00
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.
}