I am sorry for the newb question, but I am just starting with OCaml and I could not find how to ues utop autocompletion.
When I start typing something in utop, I see a list of choices at the bottom of the shell. If there is only one valid choice, pressing TAB will autocomplete what I am writing. But if there are multiple valid choices, and I spot the one I want, I have not found a way to select it (other than keep writing).
For instance (assuming I have imported Core.Std
) I type
Float.of
The first suggestion is Float.of_float
, the second one is Float.of_int
. How do I select the second one?