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

Re: Say it isn't so, -MO=Deparse!

by cchampion (Curate)
on Apr 03, 2005 at 22:55 UTC ( [id://444554]=note: print w/replies, xml ) Need Help??


in reply to Say it isn't so, -MO=Deparse!

Which version are you using?

Looks like you should upgrade ...

$ perl -v This is perl, v5.8.5 built for i386-linux-thread-multi Copyright 1987-2004, Larry Wall [SNIP] $ perl -le '$_ = ($x) = (4, 5, 6); print' 3 $ perl -MO=Deparse,-p -le '$_ = ($x) = (4, 5, 6); print' BEGIN { $/ = "\n"; $\ = "\n"; } ($_ = (($x) = (4, 5, 6))); print($_); -e syntax OK $ perl -MO=Deparse,-p -le '$_ = ($x) = (4, 5, 6); print' | perl -e syntax OK 3

See also Parsing of subscript separator in B::Deparse for another Deparse case.

HTH

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (2)
As of 2024-04-26 00:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found