On the arc-nu readme is written: Ctrl+C aborts the current computation but doesn't exit the REPL:
But when I try to press Ctrl-c in the repl (with a computation) I get: > (while t t)
^Cuser break
context...:
/home/oscar/Workspace/arc-nu/repl:36:6
/home/oscar/Workspace/arc-nu/repl: [running body]
...pace/arc-nu/repl:61:6: arity mismatch;
the expected number of arguments does not match the given number
expected: 0
given: 1
arguments...:
#<procedure:void>
context...:
/home/oscar/Workspace/arc-nu/repl: [running body]
If I press Ctrl-c when no computation is carried on I get: > user break
context...:
/usr/share/racket/pkgs/readline-lib/readline/pread.rkt:230:0: read-cmdline-syntax
/home/oscar/Workspace/arc-nu/repl:36:6
...pace/arc-nu/repl:61:6: arity mismatch;
the expected number of arguments does not match the given number
expected: 0
given: 1
arguments...:
#<procedure:void>
And in both cases, it exits to the terminal. |