Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusramberg/b5e71c6e8e2d5ea7ee896251e4f5620f to your computer and use it in GitHub Desktop.
Save marcusramberg/b5e71c6e8e2d5ea7ee896251e4f5620f to your computer and use it in GitHub Desktop.
#!/usr/bin/perl -w
use YAML;
my $yaml=Load('---
a:
b: 1
c: 2
e: 3');
$yaml->{a}->{d}=2;
warn Dump($yaml);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment