13 lines
197 B
Plaintext
13 lines
197 B
Plaintext
class Breakfast {
|
|
cook() {
|
|
print("Frying some eggs")
|
|
}
|
|
|
|
serve(who) {
|
|
print("Enjoy your breakfast, " + who + ".")
|
|
}
|
|
}
|
|
|
|
print(Breakfast)
|
|
let bf = Breakfast()
|
|
print(bf) |