Fixed invoking functions within function arguments

Somewhat similar to c9d4b9965c
This commit is contained in:
2026-05-19 13:21:41 +10:00
parent a0d75b3c70
commit f55f27726c
10 changed files with 115 additions and 47 deletions
+7 -7
View File
@@ -1,12 +1,12 @@
if (true) {
print "Who?";
fn a(x) {
print x;
}
else if (true) {
print "What?";
fn b() {
return 42;
}
else {
print "IDK";
}
a(b(), b());