quakeforge/doc/gib/break.gib
Brian Koropoff e338dd4672 Finished up the section on flow control and outlined the section on
functions.  Added example script output to figures.
2003-02-23 05:08:15 +00:00

8 lines
No EOL
106 B
Text

num = 4
while $num {
echo Number: $num
if ($num == 2) {
break
}
num = ($num - 1)
}