Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
     my @temps= (1,2,3);
     return \@temps;
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
     my $temps= [1,2,3];
     return $temps;
    }