in reply to Re: Hash element exists/delete
in thread Hash element exists/delete
Can you tell me what I am doing wrong:
$ perl -e 'use strict; use warnings; my $one = 1; my $two = 2; if( $on +e = $two ) { print "True\n"; } else { print "False\n"; } ' True $
I get no warnings!
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Hash element exists/delete (= in conditional)
by LanX (Sage) on Jan 22, 2013 at 10:54 UTC | |
by tmharish (Friar) on Jan 22, 2013 at 11:19 UTC | |
Re^3: Hash element exists/delete
by tobyink (Canon) on Jan 22, 2013 at 10:23 UTC |
In Section
Seekers of Perl Wisdom