Reputation: 1344
I recently downloaded j902 and can launch the console from my terminal, but I don't know how to exit. I tried “Ctrl + C” and "exit" but they did not work.
How do I exit the J console?
Upvotes: 1
Views: 214
Reputation: 400
ctrl+c signals break
ctrl+d exits
J verbs require an argument to run (otherwise they display). You need to provide an arg to exit.
exit 0
Upvotes: 3