Skip to content

Instantly share code, notes, and snippets.

@mazikwyry
Created March 15, 2017 10:56
Show Gist options
  • Save mazikwyry/7b1ca4c981b24a967313cd735e153f33 to your computer and use it in GitHub Desktop.
Save mazikwyry/7b1ca4c981b24a967313cd735e153f33 to your computer and use it in GitHub Desktop.
class ToDo
attr_accessor :body, :id
def initialize(id, body)
@body = body
@id = id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment