RosettaCodeData/Task/Conditional-structures/Raku/conditional-structures-2.raku
2023-07-01 13:44:08 -04:00

5 lines
137 B
Raku

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