Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

# yam1.pl
use strict;
use warnings;

use YAML;

my $config = {
  NAME => 'John Doe',
  ADDRESS => '123 Main St.',
  PHONE => {
    'Home' => '123-4444',
    'Work' => '123-5555',
  },
  CONTACTS => [
    'John',
    'Paul',
    'George',
  ],
};

print Dump( $config ), "\n";