Created
March 4, 2014 21:20
-
-
Save wannabefro/9355926 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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