Created
May 6, 2019 14:19
-
-
Save marcusramberg/b5e71c6e8e2d5ea7ee896251e4f5620f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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