Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

RE: RE: RE: undefs and functions

by perlmonkey (Hermit)
on Aug 02, 2000 at 21:32 UTC ( [id://25790]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $foo = { };
    $foo->{a}->{b}->{c}->{d} = 1;
    use Data::Dumper;
    print Data::Dumper->Dump([$foo],['foo']);
    
  2. or download this
    $foo = {
             'a' => {
                      'b' => {
    ...
                             }
                    }
           };
    
  3. or download this
    print %{$foo->{a}->{d}}
  4. or download this
    my $bar = $foo->{a}->{d};
    print %$bar if $bar;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-03-29 00:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found