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

Using repeat   |   while and until as statement modifiers

Translations of this page: EnglishDeutschEspañolItalianoLatviešuNederlandsБългарскиРусскийУкраїнська