mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 12:32:41 +00:00
6 lines
111 B
Lox
6 lines
111 B
Lox
|
|
fun f(a, b) {
|
||
|
|
print a;
|
||
|
|
print b;
|
||
|
|
}
|
||
|
|
|
||
|
|
f(1, 2, 3, 4); // expect runtime error: Expected 2 arguments but got 4.
|