0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-02 15:22:11 +00:00
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.
}