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