0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-02-19 10:20:45 +00:00
quakeforge/doc/gib/continue.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

6 lines
No EOL
88 B
Text

for num in 1 2 3 4 {
if ($num == 3) {
continue
}
echo Number: $num
}