Last active
May 17, 2018 07:20
-
-
Save vireshas/4b84f976f8f9f9ebafa23083753b9339 to your computer and use it in GitHub Desktop.
Dev: how do i define_methods on a class?
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
class C | |
class << self | |
define_method(:a) do |msg| | |
"hello #{msg}" | |
end | |
end | |
end | |
puts C.a("world") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment