Help for this page

Select Code to Download


  1. or download this
    @arr = ();
    
  2. or download this
    use strict; # ALWAYS!!!
    
    ...
    sub getarray {
       return ('a'..'d');
    }
    
  3. or download this
    print join(',', getarray()), "\n";