7 lines
73 B
Text
7 lines
73 B
Text
class Bacon {
|
|
eat() {
|
|
print "Crunch crunch crunch!";
|
|
}
|
|
}
|
|
|
|
Bacon().eat();
|