Created
December 5, 2013 11:31
-
-
Save eccyan/7803872 to your computer and use it in GitHub Desktop.
本日 Ruby でハマったカンマの罠 ref: http://qiita.com/eccyan/items/01333620a3a6d5675c85
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
id = 1, | |
name = "eccyan" |
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
id = 1, name = "eccyan" |
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
id = [1, name = "eccyan"] |
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
pry(main)> id = 1, | |
pry(main)* name = "eccyan" | |
=> [1, "eccyan"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment