eitanlees
eitanlees

Reputation: 1344

How to exit the J console?

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

Answers (1)

eiverson
eiverson

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

Related Questions