Cursus Raku / Elementa / Fundamenta ordinis exsecutionis / Ansae / Utendo until

Quiz — until ansa

1

What does this program print?

my $n = 0;
until $n > 5 {
    $n++;
}
say $n;
6Responsum: (: 4, 5, 6 :)

2

How to make this program to have precisely five iterations?

.my $n = 1;
6 5until $n == ␣ {
.    say $n;
.    $n++;
.}

Utendo until   |   Utendo repeat