A recursive call is just like any other method call:



public int ReturnOne() {
return 1;
}

public static void main(String[] args) {