in reply to To express a null string, why would anyone use ...=q{} intead of ...= '' ?

Here's a reason: (hey, you said you couldn't think of a single reason...)
my $quote = q{'}; my $question = q{?}; my $star = q{*}; my $empty = q{};
  • Comment on Re: To express a null string, why would anyone use ...=q{} intead of ...= '' ?
  • Download Code