5 lines
137 B
Raku
5 lines
137 B
Raku
given lc prompt("Done? ") {
|
|
when 'yes' { return }
|
|
when 'no' { next }
|
|
default { say "Please answer either yes or no." }
|
|
}
|