Skip to content

Instantly share code, notes, and snippets.

@Kurt-P
Created August 9, 2013 18:42
Show Gist options
  • Save Kurt-P/6196030 to your computer and use it in GitHub Desktop.
Save Kurt-P/6196030 to your computer and use it in GitHub Desktop.
This is just a little test I'm doing with Gist. Just seeing how it works an' all.
public class Echo {
public static void main(String[] args) {
for (int i = 0; i < args; i++) {
System.out.print(args[i] + " ");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment