Skip to content

Instantly share code, notes, and snippets.

@theirix
Created May 10, 2011 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theirix/965430 to your computer and use it in GitHub Desktop.
Save theirix/965430 to your computer and use it in GitHub Desktop.
test
import java.util.Collections;
import java.util.Iterator;
import java.util.Vector;
public class testClass {
public static void main(String[] args) {
System.out.println("Hello World");
weirdClass wc = new weirdClass();
for (int i=0; i<args.length; i++) {
Integer num = Integer.parseInt(args[i]);
wc.addNumber(num);
}
wc.printOut();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment