Skip to content

Instantly share code, notes, and snippets.

@YutaGoto
Created October 27, 2020 15:57
Show Gist options
  • Save YutaGoto/88dc03242c90ff1bf0a38535cac9b155 to your computer and use it in GitHub Desktop.
Save YutaGoto/88dc03242c90ff1bf0a38535cac9b155 to your computer and use it in GitHub Desktop.
1.method(:to_s).call # => '1'
1.method(:to_s).() # => 1
1.method('+').call(2) # => 3
1.method(:+).(2) # => 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment