Help for this page

Select Code to Download


  1. or download this
    use strict; use warnings; # yadda yadda
    use 5.10.0;
    ...
    say "this: ", pop @{$o->foo};
    __END__
    this: 10
    
  2. or download this
    use strict; use warnings; # yadda yadda
    use 5.10.0;
    ...
    say "this: ", pop @{[$o->foo]};
    __END__
    this: 10