Help for this page

Select Code to Download


  1. or download this
    my $result = shift @{[some list function]};
    
  2. or download this
    my $result = (some list function)[0];
    
  3. or download this
    my ($result) = some list function;