Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: two + 2 not equal 4!

by nvivek (Vicar)
on Jul 24, 2010 at 05:28 UTC ( [id://851118]=note: print w/replies, xml ) Need Help??


in reply to two + 2 not equal 4!

If you want to know how it works clearly.You print the array @_ inside your subroutine.@_ is an array which contains the arguments passed to subroutine. If you call the subroutine without using &, then it will pass the data given after two subroutine will be passed.In your case, two + 2 2 will be passed as an argument. In the subroutine, you didn't handle anything with that argument.Then, 2 will be returned from that subroutine.That's why 2 gets printed. If you use &, then 2 from the subroutine will be returned and then it added with + 2 given.Then, it will print 4.

use strict; use warnings; sub two { print @_; 2 } print "Two=%d\n", two + 2;

If you want to have the array structure , use Dumper function which is in Data module.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (7)
As of 2024-04-18 10:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found