Skip to content

Instantly share code, notes, and snippets.

@alexejVasko
Created February 15, 2016 15:21
Show Gist options
  • Save alexejVasko/9eedaf0a7755aab37a82 to your computer and use it in GitHub Desktop.
Save alexejVasko/9eedaf0a7755aab37a82 to your computer and use it in GitHub Desktop.
package method;
public class Sum {
public static void main(String[] args) {
sum(5, 3);
}
static void sum(int a, int b){
System.out.println(a + b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment