mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
6 lines
88 B
Text
6 lines
88 B
Text
|
for num in 1 2 3 4 {
|
||
|
if ($num == 3) {
|
||
|
continue
|
||
|
}
|
||
|
echo Number: $num
|
||
|
}
|