Help for this page

Select Code to Download


  1. or download this
    my $lines;
    {
        local $/ = undef;
        $lines = <INPUT>;
    }
    
  2. or download this
    @names = ("bill", "fred", "joe");
    print "@names\n";
    print @names, "\n";
    
  3. or download this
    bill fred joe
    billfredjoe