Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Complex Data Structure Suggestions Wanted

by monarch (Priest)
on Jun 07, 2005 at 11:25 UTC ( [id://464244]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub ReadSource( $ $ )
    {
    ...
            }
        }
    }
    
  2. or download this
      my %myhash = ();  # empty hash
      my @Data = ( 'this', 'that', 'that over there' );
    ...
      my $datasource = 'banana';
    
      ReadSource( $datasource, \%myhash );
    
  3. or download this
      use Data::Dumper;
    
      ReadSource( $datasource, \%myhash );
      print( Dumper( \%myhash ) . "\n" );
    
  4. or download this
    $VAR1 = {
              'this' => [
    ...
                                     'banana'
                                   ]
            };
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://464244]
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 10:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found