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