zlox/samples/ch28_methods_initializers.lox

5 lines
68 B
Plaintext

class Brunch {
init(food, drink) {}
}
Brunch("eggs", "coffee");