Skip to content

Instantly share code, notes, and snippets.

@dangnhdev
Created January 16, 2016 14:47
Show Gist options
  • Select an option

  • Save dangnhdev/df516c251afd226eb4e7 to your computer and use it in GitHub Desktop.

Select an option

Save dangnhdev/df516c251afd226eb4e7 to your computer and use it in GitHub Desktop.
public class Test {
public static void main(String[] args) {
int argument1 = 10000;
int argument2 = 9999;
method(argument1, argument2)
}
public static void method(int parameter1, int parameter2){
System.out.println(parameter1);
System.out.println(parameter2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment