RosettaCodeData/Task/Menu/OCaml/menu-1.ocaml
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

9 lines
265 B
Text

let select ?(prompt="Choice? ") = function
| [] -> ""
| choices ->
let rec menu () =
List.iteri (Printf.printf "%d: %s\n") choices;
print_string prompt;
try List.nth choices (read_int ())
with _ -> menu ()
in menu ()