```the obj Test { fn method (a: int) str { return a.str() } } t := Test{} d := t.method e := d(10) print(d) ```