Created
January 29, 2013 16:44
-
-
Save aitor/4665674 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
# Same result in 1.8.7 and all 1.9.x ruby versions. | |
> puts YAML.dump( :NO => "dew",:no => "Hey", 'no' => 12, :N => "we" ) | |
--- | |
"no": 12 | |
:no: Hey | |
:NO: dew | |
:N: we |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment