In this book, various examples are tried out directly on the console. This is primarily because Java offers the interactive command line application JShell as a REPL since version 9. In this appendix, you will get to know JShell briefly.
1 Java + REPL => jshell
The tool jshell was integrated in the JDK with Java 9. This tool allows an interactive working style and the execution of small source code snippets, as it is already familiar from various other programming languages. This is also known as REPL (Read-Eval-Print-Loop ). Thereby, ...