RosettaCodeData/Task/Conditional-structures/Perl-6/conditional-structures-2.pl6
2018-06-22 20:57:24 +00:00

5 lines
137 B
Raku

given lc prompt("Done? ") {
when 'yes' { return }
when 'no' { next }
default { say "Please answer either yes or no." }
}