Help for this page
use strict; use warnings; # yadda yadda use 5.10.0; ... say "this: ", pop @{$o->foo}; __END__ this: 10
use strict; use warnings; # yadda yadda use 5.10.0; ... say "this: ", pop @{[$o->foo]}; __END__ this: 10