RosettaCodeData/Task/Inverted-syntax/Perl-6/inverted-syntax-6.pl6

8 lines
124 B
Raku
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
repeat {
$_ = prompt "Gimme a number: ";
} until /^\d+$/;
repeat until /^\d+$/ {
$_ = prompt "Gimme a number: ";
}