Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Patch name: tailc.patchNote: Prototype.

Warning
titlePrototype

Work in progress.

Tail call support in Davinci

...

Code Block
public class Simple {
  public static int tailcaller(int x) {
    if (x==0) return x+1;
      
    return goto tailcaller(x-1);
  }
}

...