Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    
    map $_ -1, 1;
    
  2. or download this
    Missing comma after first argument to map function at <...>, near ";"
    
  3. or download this
    use warnings;
    use strict;
    
    map {$_ -1} 1;
    
  4. or download this
    0