Files
rlox/examples/super.lox
2018-07-27 18:35:39 +02:00

15 lines
228 B
Plaintext

class Doughnut {
fn cook() {
print("Fry until golden brown.");
}
}
class BostonCream < Doughnut {
fn cook() {
super.cook();
print("Pipe full of custard and coat with chocolate.");
}
}
BostonCream().cook();