Skip to content

Instantly share code, notes, and snippets.

@mechinn
Created October 10, 2014 04:51
Show Gist options
  • Save mechinn/562ccd4327f9263ec42e to your computer and use it in GitHub Desktop.
Save mechinn/562ccd4327f9263ec42e to your computer and use it in GitHub Desktop.
Hello args
public class Hello {
public static void main(String[] args) {
//for each word in args
for(String word : args) {
//print the word on the same line with a space after
System.out.print(word+" ");
}
//print a newline
System.out.println();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment