Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Stack
  2. def initialize
  3. @store = []
  4. end
  5. def push x
  6. @store.push x
  7. end
  8. def pop
  9. @store.pop
  10. end
  11. def peek
  12. @store.last
  13. end
  14. def empty?
  15. @store.empty?
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement