mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 04:22:41 +00:00
8 lines
145 B
Lox
8 lines
145 B
Lox
class Foo {
|
|
method(a, b) {
|
|
print a;
|
|
print b;
|
|
}
|
|
}
|
|
|
|
Foo().method(1, 2, 3, 4); // expect runtime error: Expected 2 arguments but got 4.
|