Closed KanseiKy closed 1 year ago
As you can see, the above image show $ $ Keyboard intterupt. Use `exit` to exit What I expect it to be is something like
$ $ Keyboard intterupt. Use `exit` to exit
$ *ctrl+c* Keyboard intterupt. Use `exit` to exit` $
But that didn't happened. It runs the next iteration from my loop. Basically
loop
prompt wait for user input ctrl+c prompt SIGINT handling wait for user input
It should be
prompt wait for user input ctrl+c SIGINT handling prompt wait for user input
(SIGINT handling and 2nd prompt supposed to swap places) I don't know if this is a bug or not but I can send more details if required
SIGINT handling
prompt
Does this happen to you if you run cargo run --example readme_example?
cargo run --example readme_example
Closed as stale.
As you can see, the above image show
$ $ Keyboard intterupt. Use `exit` to exit
What I expect it to be is something likeBut that didn't happened. It runs the next iteration from my
loop
. BasicallyIt should be
(
SIGINT handling
and 2ndprompt
supposed to swap places) I don't know if this is a bug or not but I can send more details if required