With the new design of functions, it might be possible to support recursion
By compiling the function recursively, up to a certain depth, that is given at compilation time
Add --recursion_depth flag to indicate the maximum depth of the recursion
When hitting that depth in run-time, print an error and enter an infinite loop, similar to division by zero
With the new design of functions, it might be possible to support recursion By compiling the function recursively, up to a certain depth, that is given at compilation time Add --recursion_depth flag to indicate the maximum depth of the recursion When hitting that depth in run-time, print an error and enter an infinite loop, similar to division by zero