Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {
        $line = $_;
    
  2. or download this
    while ( my $line = <FILE> ) {
    
  3. or download this
    johngg@shiraz:~/perl/Monks > perl -Mstrict -Mwarnings -E '
    my $text = q{abcd};
    ...
    say qq{>$text<};'
    >abcd<
    >ab<
    
  4. or download this
    johngg@shiraz:~/perl/Monks > perl -Mstrict -Mwarnings -E '
    my @items = q{a} .. q{g};
    ...
    e
    "f"
    "g"
    
  5. or download this
    say join q{,}, @items;