Guest User

Untitled

a guest
Oct 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Notebook
  2. def initialize
  3. @monitor = Monitor.new
  4. @keyboard = Keyboard.new
  5. end
  6.  
  7. def turn_on
  8. @monitor.turn_on
  9. @keyboard.turn_on
  10. end
  11. end
Add Comment
Please, Sign In to add comment