Help for this page

Select Code to Download


  1. or download this
    # yam1.pl
    use strict;
    ...
    };
    
    print Dump( $config ), "\n";
    
  2. or download this
    ---
    ADDRESS: 123 Main St.
    ...
      Home: 123-4444
      Work: 123-5555
    
  3. or download this
    # yam2.pl -- does NOT work!
    use strict;
    ...
    # load YAML file into perl hash ref?
    my $config = Load("config.yml");
    print Dumper($config), "\n";
    
  4. or download this
    # yam3.pl - Works! Yippie!
    use strict;
    ...
    my $config = Load($yml);
    print Dumper($config), "\n";
    
  5. or download this
    # yam4.pl - Works also! Yippie!
    use strict;
    ...
    my $config = LoadFile($fh);
    print Dumper($config), "\n";