Course of Raku / Essentials
/ Control flow essentials / Loops / Using repeat
Quiz — the repeat loop
1
Choose until or while for this program. The
program should not enter into an infinite loop.
| . | my $n = 0; |
| . | repeat { |
| . | say $n; |
| . | $n++; |
| until | } ␣␣␣␣␣ $n >= 10; |
2
Choose until or while for this program,
too.
| . | my $n = 10; |
| . | repeat { |
| . | say $n; |
| . | $n--; |
| while | } ␣␣␣␣␣ $n > 0; |