Last active
January 15, 2016 11:40
-
-
Save maxehmookau/f4ba81073a675fdbb8bd to your computer and use it in GitHub Desktop.
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
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