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