crafting-interpreters/src/test.lox

7 lines
73 B
Text

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