Created
April 12, 2018 00:21
-
-
Save jeffscottbrown/89c8c0ba816a3a822f46249bf97e62af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ~ $ 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