in reply to Re^2: Assignments for Subroutines
in thread Assignments for Subroutines

Indeed. Especially because this...

$,=""; #change list delimiter back before it is a problem

... changes the list delimited "back" to the empty string, when we never checked that it started off as the empty string to begin with!

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'