changes.mady.by.user J. Duke
Saved on Apr 02, 2009
Patch name: tailc.patchNote: Prototype.
Work in progress.
...
public class Simple { public static int tailcaller(int x) { if (x==0) return x+1; return goto tailcaller(x-1); } }