Skip to content

Instantly share code, notes, and snippets.

@wannabefro
Created March 4, 2014 21:20
Show Gist options
  • Save wannabefro/9355926 to your computer and use it in GitHub Desktop.
Save wannabefro/9355926 to your computer and use it in GitHub Desktop.
class User
attr_reader :name, :todos
def initialize(name, password, gender)
@name = name
@password = password
@gender = gender
@todos = []
end
def create_todo(todo)
@todos << Todo.new(todo)
end
end
class Todo
def initialize(text)
@text = text
@date = Time.now
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment