1: #line 786 "./lpsrc/flx_regress.pak" 2: //Check recursion 3: #line 786 "./lpsrc/flx_regress.pak" 4: //Check tail call optimisation
5: #import <flx.flxh> 6: fun g(x:int):int = { 7: if x == 0 goto endoff; 8: return g(x-1); 9: endoff:> 10: return 1; 11: } 12: 13: print (g 10); endl;
1: 1