RosettaCodeData/Task/Call-an-object-method/Wren/call-an-object-method.wren

10 lines
211 B
Plaintext

class MyClass {
construct new() {}
method() { System.print("instance method called") }
static method() { System.print("static method called") }
}
var mc = MyClass.new()
mc.method()
MyClass.method()