Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: What is correct way to reference?

by haukex (Archbishop)
on May 22, 2017 at 17:51 UTC ( [id://1190869]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    
    { phone => { callTo => ["X"] } }
    { phone => { callTo => ["Y", "Z"] } }
    
  2. or download this
    use XML::Simple qw/:strict XMLin/;
    
    ...
    { phone => { callTo => "X" } }
    { phone => { callTo => ["Y", "Z"] } }
    { phone => { callTo => ["X"] } }
    
  3. or download this
    foo( "one" );
    foo( ["two", "three"] );
    ...
    <one>
    <two>
    <three>
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (9)
As of 2024-04-19 16:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found