Course of Raku / 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;

Course navigation

Loops / Using until   |   Loops / while and until as statement modifiers


💪 Or jump directly to the exercises to this section.