zlox/samples/ch28_methods_initializers.lox

5 lines
68 B
Plaintext
Raw Normal View History

class Brunch {
2024-08-31 11:32:05 +02:00
init(food, drink) {}
}
2024-08-31 11:32:05 +02:00
Brunch("eggs", "coffee");