Skip to content

Instantly share code, notes, and snippets.

@ilyaBrandon
Created February 23, 2016 15:16
Show Gist options
  • Select an option

  • Save ilyaBrandon/07019b5ae0dce0d9e13e to your computer and use it in GitHub Desktop.

Select an option

Save ilyaBrandon/07019b5ae0dce0d9e13e to your computer and use it in GitHub Desktop.
public class BATTLEFRONT {
public static void main(String[] args) {
sum(8,5);
}
static void sum(int num1,int num2) {
System.out.println(num1+num2 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment