Skip to content

Instantly share code, notes, and snippets.

@jklingsporn
Created May 3, 2017 08:57
Show Gist options
  • Save jklingsporn/211f4cddb82d4e160b25758ecbe81658 to your computer and use it in GitHub Desktop.
Save jklingsporn/211f4cddb82d4e160b25758ecbe81658 to your computer and use it in GitHub Desktop.
Print the arguments
public class Main {
public static void main(String[] args) {
System.out.println(String.format("Look at these wonderful arguments %s", Arrays.toString(args)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment