in reply to strict subs and bareword exceptions
# Program Output Deparse perl -Mstrict -le 'print nono . "1" ' # nono1 # print 'nono' . ' +1'; perl -Mstrict -le 'print "1" . nono ' # (error) #
Unrelated to this, the following seems a little odd:
# Program Output Deparse perl -Mstrict -le 'print nono . '1' ' # nono1 # print 'nono' . 1 +; perl -Mstrict -le 'print nono .'1' ' # (nothing) # print nono 0.1;
--
John.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: strict subs and bareword exceptions
by blakem (Monsignor) on Feb 22, 2002 at 10:10 UTC | |
by jmcnamara (Monsignor) on Feb 22, 2002 at 10:27 UTC |