Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Seemingly odd behavior of sequence

by Kenosis (Priest)
on Dec 04, 2013 at 17:27 UTC ( [id://1065620]=note: print w/replies, xml ) Need Help??


in reply to Seemingly odd behavior of sequence

If you're curious how Perl parses an expression--perhaps for debugging purposes or just for the pure joy of it on a rainy afternoon--you can use the module B::Deparse at the command line as follows:

perl -MO=Deparse,-p -e 'print 0..9 x 2, "\n";'

Output:

print((0 .. (9 x 2)), "\n"); -e syntax OK

Note that the output echoes oiskuu's spot-on assessment of your expression's evaluation.

Replies are listed 'Best First'.
Re^2: Seemingly odd behavior of sequence
by jar00n (Novice) on Dec 05, 2013 at 09:44 UTC
    And many thanks to you for showing me this debugger.

      You're most welcome, jar00n!

Log In?
Username:
Password:

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

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

    No recent polls found