Skip to content

Instantly share code, notes, and snippets.

@coolbrg
Created June 25, 2014 02:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolbrg/44efd3d4e6072d8b32dc to your computer and use it in GitHub Desktop.
Save coolbrg/44efd3d4e6072d8b32dc to your computer and use it in GitHub Desktop.
Class Method Demo Phase 4
class ClassMethodDemo
def self.greet
puts "Hello, Ruby"
end
end
class UseDemo < ClassMethodDemo
greet
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment