On 03/19/2011 11:29 PM, m...@mtew.isa-geek.net wrote:
The suffix logical form is not that difficult to understand.
But is completely alien for the rest of the project. Please don't use it.
Even Perl creator himself says not to use such notation.
Vitaliy.
From: max
On 03/19/2011 08:42 PM, Joris Huizer wrote:
> On 03/19/2011 11:32 PM, Vitaliy Margolen wrote:
>> On 03/18/2011 09:24 PM, m...@mtew.isa-geek.net wrote:
>>> - if ($opt_verbose> 0)
>>> - {
>>> -print "Processing ".$spec_name."\n";
>>> - }
>>> + print "Processing ".$spec_name."\n"
On 03/19/2011 11:32 PM, Vitaliy Margolen wrote:
On 03/18/2011 09:24 PM, m...@mtew.isa-geek.net wrote:
- if ($opt_verbose> 0)
- {
-print "Processing ".$spec_name."\n";
- }
+ print "Processing ".$spec_name."\n"
+if $opt_verbose>= $VERBOSE_INPUT;
Please don't do this reverse notation.
On 03/18/2011 09:24 PM, m...@mtew.isa-geek.net wrote:
- if ($opt_verbose> 0)
- {
-print "Processing ".$spec_name."\n";
- }
+ print "Processing ".$spec_name."\n"
+if $opt_verbose>= $VERBOSE_INPUT;
Please don't do this reverse notation. It's much more confusing to most
people who are