crafting-interpreters/src/test.lox

8 lines
73 B
Text
Raw Normal View History

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