Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use YAML;
    my %hash = qw/Blue 1 Cow 3/;
    
    print Dump(\%hash);
    
  2. or download this
    --- #YAML:1.0
    Blue: 1
    Cow: 3