Last active
October 10, 2018 02:24
-
-
Save jasonekratz/8533d02bf6380b6ee8965f878f21da77 to your computer and use it in GitHub Desktop.
This file contains 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
class Foo { | |
public static void main(String[] args) { | |
System.getProperty("java.library.path"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use as the code for a Java scratch file in IntelliJ IDEA. Per the docs the class declaration and main method should be created automatically for Java files but that isn't working for me.