RosettaCodeData/Task/Menu/Rebol/menu.rebol

7 lines
175 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
menu: function [items][
print either empty? items [""] [until [
repeat n length? items [print [n ":" items/:n]]
attempt [pick items to-integer ask "Your choice: "]
]]
]