Skip to content

Instantly share code, notes, and snippets.

@maxehmookau
Last active January 15, 2016 11:40
Show Gist options
  • Save maxehmookau/f4ba81073a675fdbb8bd to your computer and use it in GitHub Desktop.
Save maxehmookau/f4ba81073a675fdbb8bd to your computer and use it in GitHub Desktop.
def output_100
puts 100
end
# is exactly the same as ->
define_method(:output_100) do
puts 100
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment