zlox/samples/ch28_say_name.lox

11 lines
143 B
Plaintext
Raw Normal View History

class Person {
sayName() {
print this.name;
}
}
var jane = Person();
jane.name = "Jane";
var method = jane.sayName;
method();