crafting-interpreters/lox/super_call.lox

15 lines
220 B
Text
Raw Permalink Normal View History

2025-05-26 10:19:18 +02:00
class Doughnut {
cook() {
print "Fry until golden brown.";
}
}
class BostonCream < Doughnut {
cook() {
super.cook();
print "Pipe full of custard and coat with chocolate.";
}
}
BostonCream().cook();