mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 04:22:41 +00:00
9 lines
146 B
Lox
9 lines
146 B
Lox
class Foo {
|
|
bar(arg) {
|
|
print arg;
|
|
}
|
|
}
|
|
|
|
var bar = Foo().bar;
|
|
print "got method"; // expect: got method
|
|
bar("arg"); // expect: arg
|