Fixed invoking functions within function arguments
Somewhat similar to c9d4b9965c
This commit is contained in:
@@ -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());
|
||||
Reference in New Issue
Block a user