Created
November 24, 2015 19:23
-
-
Save golenishchev/4ba880fc15d35e156941 to your computer and use it in GitHub Desktop.
Method and Systes.out.println
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
public class Calculator { | |
private int a = 4; | |
private int b = 5; | |
public int getSum(int a, int b) { | |
return a + b; | |
} | |
public void getResult() { | |
System.out.println("text"); | |
} | |
public static void main(String[] args) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment