RosettaCodeData/Task/Call-an-object-method/Wren/call-an-object-method.wren
2023-07-01 13:44:08 -04:00

9 lines
211 B
Text

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()