Help for this page
sub mychop(\$) { chop ${shift()} } ... my $c = mychop $thing; print " $thing,$c\n"; }
foo -> foo,o bar -> bar,r baz -> baz,z