crafting-interpreters/lox/class_methods.lox

7 lines
81 B
Text

class Bacon {
eat() {
print "Crunch crunch crunch!";
}
}
Bacon().eat();