🎨 Create beautiful interactive command line interface in OCaml
opam install inquireesy add @opam/inquirePrompt the user to answer the given message with "y" or "n".
Inquire.confirm "Are you sure?"Prompt the user to chose a value from the given options.
Inquire.raw_select "What's your favorite movie?" ~options:[ "Choice 1" ; "Choice 2" ]Prompt the user to enter a password that will be hidden with stars (*).
Inquire.password "Enter your password:"Prompt the user to input a string.
Inquire.input "Enter a value:"Inquire is dead simple. The prompt implementations are ~100 line of code each and manage the terminal control flow themselves. This simplicity comes at a price though:
Take a look at our Contributing Guide.