RosettaCodeData/Task/Conditional-structures/Raku/conditional-structures-2.raku

6 lines
137 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
given lc prompt("Done? ") {
when 'yes' { return }
when 'no' { next }
default { say "Please answer either yes or no." }
}