12 lines
350 B
Text
12 lines
350 B
Text
menu: function [items][
|
|
selection: neg 1
|
|
while [not? selection <=> 1 size items][
|
|
loop.with:'i items 'item -> print ~"|i+1|. |item|"
|
|
inp: input "Enter a number: "
|
|
if numeric? inp ->
|
|
selection: to :integer inp
|
|
]
|
|
print items\[selection-1]
|
|
]
|
|
|
|
menu ["fee fie" "huff and puff" "mirror mirror" "tick tock"]
|