method
method defines methods on types.
Examplemethod increment(this: Int): Int { this + 1 } test two_increment { assert(2.increment() == 3) }
method increment(this: Int): Int { this + 1 } test two_increment { assert(2.increment() == 3) }