Skip to content

Instantly share code, notes, and snippets.

@libitte
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save libitte/1380a3a8c9ba3c1f527b to your computer and use it in GitHub Desktop.

Select an option

Save libitte/1380a3a8c9ba3c1f527b to your computer and use it in GitHub Desktop.
`{ ... }` と `do ... end` の違いと使い分けるべきシーン ref: http://qiita.com/libitte@github/items/3eb22d2ee371185f775a
some_method other_method { ... }
some_method(other_method{ ... })
some_method other_method do ... end
some_method(other_method) do ... end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment