How can I move my cursor in a multiline command in utop? E.g :
utop # let ratio x y =
let open Float.O in
of_int x / of_int y
;;
After I execute the above command, if I want to edit the line "let open..."
, I must press up arrow once then press backspace until the cursor move to the "L" letter. Is there any way to move the cursor around in utop without using backspace too much? (like an edit mode)