Arc Forumnew | comments | leaders | submitlogin
4 points by sacado 6024 days ago | link | parent

If you want to use compiled functions in a function to compile, you can. For example, now that fib was compiled (and its return type known) the compiler knows it returns int values. But, to do so, you have to compile the called functions before the calling ones (if foo calls bar, compile bar then foo).