Is there something like python\'s interactive REPL mode, but for Java? So that I can, for example, type InetAddress.getAllByName( localHostName ) in a window, a
InetAddress.getAllByName( localHostName )
Java 9 is providing the JShell.
jshell> println( "Print me!") jshell> Print me!