Help for this page

Select Code to Download


  1. or download this
    perl -e "print @{localtime}[1,3];"
    
  2. or download this
    perl -e "sub m {return (1,2,3);} print @{&m}[0,1];" #fails
    
  3. or download this
    perl -e "sub m {@q=(1,2,3); return \@q;} print @{&m}[0,1];" #succeeds