Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. class TaskList
  2. def initialize
  3. @tasks = []
  4. end
  5.  
  6. def add(task)
  7. @tasks << task
  8. end
  9. end
Add Comment
Please, Sign In to add comment