RosettaCodeData/Task/Inverted-syntax/Raku/inverted-syntax-6.raku

8 lines
124 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
repeat {
$_ = prompt "Gimme a number: ";
} until /^\d+$/;
repeat until /^\d+$/ {
$_ = prompt "Gimme a number: ";
}