Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jeffscottbrown/89c8c0ba816a3a822f46249bf97e62af to your computer and use it in GitHub Desktop.

Select an option

Save jeffscottbrown/89c8c0ba816a3a822f46249bf97e62af to your computer and use it in GitHub Desktop.
~ $ java -version
java version "1.8.0_131"
Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)
~ $
~ $ cat Doit.java
public class Doit {
public static void main(String[] a) {
System.out.println("Hi");
}
}
~ $
~ $ javac Doit.java
~ $
~ $ time java Doit
Hi
real 0m0.098s
user 0m0.077s
sys 0m0.022s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment