Help for this page

Select Code to Download


  1. or download this
    my @array = (
      "Hibbs",
    ...
      "Schwartz",
      "Vroom",
    );
    
  2. or download this
    my @array = grep { /\S/ } split /\n/, '
    foo
    ...
    
    and so on
    ';