On Sat, 09 Jun 2018 05:33:04 -0700, [email protected] wrote: > when > using implicit return: > > > method var1() is rw { return $!var } > method var2() { return-rw $!var }
Correction, that should be:
method var1() is rw { $!var }
method var2() { return-rw $!var }
