Newer
Older
zweic / tests / 3 / bizarrReturn.zwei
class Factorial {
  Int factorial2_aux(Int x, Int acc) {
    return if (x == 0) {
	acc;
    } else {
        this.factorial2_aux(x - 1, acc * x);
    }
  }
}

new Factorial().factorial2_aux()