Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: how does perl handle variables

by Laurent_R (Canon)
on May 17, 2013 at 21:03 UTC ( [id://1034021]=note: print w/replies, xml ) Need Help??


in reply to how does perl handle variables

$ perl -e 'print 4 + "a"' 4 $ perl -e 'use strict; print 4 + "a"' 4 $ perl -e 'use warnings; print 4 + "a"' Argument "a" isn't numeric in addition (+) at -e line 1. 4 $ perl -we 'print 4 + "a"' Argument "a" isn't numeric in addition (+) at -e line 1. 4

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1034021]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-23 21:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found