Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    my @foo = split /\|/, q {foo|bar|bar};
    foreach my $x (@foo) {
      say $x;
    }
    
  2. or download this
    use 5.010;my@foo=split/\|/,q{foo|bar|bar};foreach my$x(@foo){say$x}