Exit JShell in Java : To exit JShell, type /exit.
I stuck in JShell for minutes, commands like exit, ctrl + c, end, q!, q, quit all failed, the correct syntax to quit or exit the JShell is /exit.
C:\Users\mkyong>jshell
| Welcome to JShell -- Version 11.0.1
| For an introduction type: /help intro
jshell> exit
| Error:
| cannot find symbol
| symbol: variable exit
| exit
| ^--^
jshell> q
| Error:
| cannot find symbol
| symbol: variable q
| q
| ^
jshell> quit
| Error:
| cannot find symbol
| symbol: variable quit
| quit
| ^--^
jshell> end
| Error:
| cannot find symbol
| symbol: variable end
| end
| ^-^
jshell>
Finally, /exit
jshell> /exit
| Goodbye