15 lines
283 B
Plaintext
15 lines
283 B
Plaintext
|
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();
|