Skip to content

Instantly share code, notes, and snippets.

@cdl
Created December 30, 2012 21:05
Show Gist options
  • Save cdl/4415208 to your computer and use it in GitHub Desktop.
Save cdl/4415208 to your computer and use it in GitHub Desktop.
class ClassName < InheritsFromModule::Class
@greeting = 'hay' # ivar
:name = 'colby' # symbol, used extensively in Rails
def greet
puts @greeting + ' ' + :name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment