Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^2: How can we interpolate an expression??

by Rohit Jain (Sexton)
on Sep 20, 2012 at 18:06 UTC ( [id://994713]=note: print w/replies, xml ) Need Help??


in reply to Re: How can we interpolate an expression??
in thread How can we interpolate an expression??

Yes.. I can use single quotes and '.' to concatenate the results just as we do in Java..
say 'Result is :' . $num * $multipler;

Replies are listed 'Best First'.
Re^3: How can we interpolate an expression??
by Anonymous Monk on Sep 20, 2012 at 18:10 UTC
    my $arrayref = [ 4200 / 100 ]; print "The answer is $arrayref \n";
    The answer is ARRAY(0x3f8a94)

    my $arrayref = [ 4200 / 100 ]; print "The answer is @$arrayref \n";
    The answer is 42

    my $arrayref = ; print "The answer is @[ 4200 / 100 ] \n";
    syntax error at - line 1, near "= ;" Execution of - aborted due to compilation errors.

    print "The answer is @{[ 4200 / 100 ]}\n";
    The answer is 42

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (7)
As of 2024-03-28 11:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found