I would like to write a typical prompt function in ion where I pass a string and then read some input from the user and return that
in bash I would use something like
function my_prompt () {
echo -n $1
read ret
}
my_prompt "some prompt "
the_value = $ret
There seems to be no way to do this sort of thing in ion along with not being able to print out debug messages with echo.
Am I missing something