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