Help for this page

Select Code to Download


  1. or download this
      my @foo = 1..4;
      local *foo = ['a'..'d'];
      print @foo; # 1234
    
  2. or download this
      my @foo = 1..4;
      our @foo = 'a'..'d';
      print @foo; # abcd