Skip to content

Instantly share code, notes, and snippets.

@mikecmpbll
Last active October 2, 2015 12:38
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 mikecmpbll/1c079946c1ad184ec5b2 to your computer and use it in GitHub Desktop.
Save mikecmpbll/1c079946c1ad184ec5b2 to your computer and use it in GitHub Desktop.
class MyClass # <-- this begins the definition of a class called MyClass
def my_method # <-- this begins the definition of a method called my_method on MyClass
puts("This will output this text") # <-- this is what the method does
end # <-- this ends the definition of the method
end # <-- this ends the definition of the class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment