zlox/samples/ch28_initializers.lox

15 lines
283 B
Plaintext
Raw Normal View History

2024-08-31 11:32:05 +02:00
class CoffeeMaker {
init(coffee) {
this.coffee = coffee;
}
brew() {
print "Enjoy your cup of " + this.coffee;
// No reusing the grounds!
this.coffee = nil;
}
}
var maker = CoffeeMaker("coffee and chicory");
print maker;
maker.brew();