4 lines
86 B
Raku
4 lines
86 B
Raku
my $answer;
|
|
repeat {
|
|
$answer = prompt "Gimme an answer: ";
|
|
} until $answer ~~ 42;
|