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