sub my_lc { not defined wantarray and warnings::warnif("void", "my_lc used in void context"); return wantarray ? map lc $_,@_ : lc shift; }