HelloJava
Typical Hello World written in Java
Compile
javac ./src/HelloJava.java -d ./bin/
Run
java -cp ./bin HelloJava
Notes
-d Sets the destination directory for class files.
-cp Specifies a list of directories, JAR files, and ZIP archives to search for class files.