Created
February 15, 2016 15:21
-
-
Save alexejVasko/9eedaf0a7755aab37a82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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