Last active
December 16, 2015 08:49
-
-
Save keikun17/5409034 to your computer and use it in GitHub Desktop.
Sigh... #ruby
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
{'key.with.dot': 'something'} | |
=> SyntaxError: (irb):7: syntax error, unexpected ':', expecting tASSOC | |
{'key.with.dot': 'something'} | |
^ | |
{"key.with.dot": 'something'} | |
=> SyntaxError: (irb):8: syntax error, unexpected ':', expecting tASSOC | |
{key.with.dot: 'something'} | |
^ | |
{"key.with.dot"=>"something"} | |
=> {"key.with.dot"=>"something"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment