2009
Leaning toothpick syndrome - Wikipedia, the free encyclopedia
(via)When you wish " wasn't " but ' or whatever else ...
print qq|$text|;
m{ftp://[^/]*/pub/}
2006
perl.com: Perl Command-Line Options
e.g. perl -n -e 'some code' file1
Then Perl will interpret that as:
LINE:
while (<>) {
# your code goes here
}
...
and much more of the like ^_^
1
(2 marks)