crafting-interpreters/lox/class_methods.lox

8 lines
81 B
Text
Raw Normal View History

2025-05-26 10:19:18 +02:00
class Bacon {
eat() {
print "Crunch crunch crunch!";
}
}
Bacon().eat();