Skip to content

Instantly share code, notes, and snippets.

@e-tverdokhleb
Created November 10, 2015 05:29
Show Gist options
  • Save e-tverdokhleb/fc7d30fe21806282981e to your computer and use it in GitHub Desktop.
Save e-tverdokhleb/fc7d30fe21806282981e to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
sum(1,4);
}
private 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