Skip to content

Instantly share code, notes, and snippets.

@eccyan
Created December 5, 2013 11:31
Show Gist options
  • Save eccyan/7803872 to your computer and use it in GitHub Desktop.
Save eccyan/7803872 to your computer and use it in GitHub Desktop.
本日 Ruby でハマったカンマの罠 ref: http://qiita.com/eccyan/items/01333620a3a6d5675c85
id = 1,
name = "eccyan"
id = 1, name = "eccyan"
id = [1, name = "eccyan"]
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