in reply to perl statements
A good rule of thumb to go by, is that if something looks kinda funky and complicated and hard to understand, it probably is :P If you have Perl Best Practices, it will certainly pound that into your head. The semantics of the examples were explained above; just know that you won't need to use them yourself much or really worry about it.
Things to look out for:
$/ = undef; my $text = <$in>;
In summary, the examples listed are fairly rare, but like everything occasionally have application. Good luck and happy coding :)
|
---|