Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Calc

public class Calc {

  public static void main(String[] args) {
    Number c = add(2, 3);
    System.out.println(c);
  }

  public static Integer add(Integer a, Integer b) {
    /* System.out.println(a);
    System.out.println(b); */
    return a+b;
  }
}