Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    my @arr = ('1', '2', '3');
    
    ... do stuff with the variables ...
    
  2. or download this
    use warnings;
    use strict;
    ...
        our ($str1, $str2, $str3);
        our @arr = ('1', '2', '3');
    }