mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
7 lines
167 B
Text
7 lines
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.
|
||
|
}
|