yasl
yasl copied to clipboard
Allow forward declarations of functions?
This would allow mutually recursive functions, as below:
fn f;
fn g(....) {
f(....);
}
fn f(....) {
g(....)
}
Something like this?