7 lines
96 B
Text
7 lines
96 B
Text
alias while_loop {
|
|
var %n = 10
|
|
while (%n >= 0) {
|
|
echo -a Countdown: %n
|
|
dec %n
|
|
}
|
|
}
|