yasl icon indicating copy to clipboard operation
yasl copied to clipboard

Allow forward declarations of functions?

Open CoffeeTableEspresso opened this issue 3 years ago • 0 comments

This would allow mutually recursive functions, as below:

fn f;

fn g(....) {
     f(....);
}

fn f(....) {
    g(....)
}

Something like this?

CoffeeTableEspresso avatar May 12 '21 19:05 CoffeeTableEspresso