Skip to content

Instantly share code, notes, and snippets.

@golenishchev
Created November 24, 2015 19:23
Show Gist options
  • Save golenishchev/4ba880fc15d35e156941 to your computer and use it in GitHub Desktop.
Save golenishchev/4ba880fc15d35e156941 to your computer and use it in GitHub Desktop.
Method and Systes.out.println
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