RosettaCodeData/Task/Conditional-structures/Perl-6/conditional-structures-2.pl6

6 lines
137 B
Raku
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
given lc prompt("Done? ") {
when 'yes' { return }
when 'no' { next }
2018-06-22 20:57:24 +00:00
default { say "Please answer either yes or no." }
2013-04-10 22:43:41 -07:00
}