Java

Compiling via the cmd line
the java SDK will have to be installed first
javac myfile.java
will create a myfile.class in the same directory

to run the class file with the java interpreter
java myfile (leave .class off)

sample code: