0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-06 09:21:50 +00:00
quakeforge/doc/gib/if-chain.gib

7 lines
167 B
Text
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.
}