Help for this page

Select Code to Download


  1. or download this
    $phrase = "Hello World";
    for ($phrase) { @parts = split }
    
  2. or download this
    while (<STDIN>) {
        push @parts, split;
    }