Last active
April 27, 2017 14:14
-
-
Save yegeniy/67a10322e86fedb853afd1663dbf98b4 to your computer and use it in GitHub Desktop.
Sandbox for standard java library
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
import java.util.*; | |
public class MainClass { | |
public static void main(String[] args) { | |
System.out.println(Arrays.deepToString(args)); | |
} | |
} |
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
javac MainClass.java && java -cp . MainClass $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment