Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save masak/77351 to your computer and use it in GitHub Desktop.
Save masak/77351 to your computer and use it in GitHub Desktop.
$ perl -MYAML -e 'print Dump({ "foo" => [1..3]})'
---
foo:
- 1
- 2
- 3
$ perl -MYAML::XS -e 'print Dump({ "foo" => [1..3]})'
---
foo:
- 1
- 2
- 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment