Guest User

Untitled

a guest
Apr 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. >> begin
  2. ?> 1/0
  3. >> rescue ZeroDivisionError
  4. >> puts "you divided by zero"
  5. >> end
  6. you divided by zero
  7. => nil
  8.  
  9. >> begin
  10. ?> 1/kittens
  11. >> rescue ZeroDivisionError
  12. >> puts "you divided by zero"
  13. >> end
  14. NameError: undefined local variable or method `kittens' for main:Object
  15. from (irb):45
  16. from :0
  17.  
  18. >> begin
  19. ?> 1/kittens
  20. >> rescue
  21. >> puts "we really have no idea what you did"
  22. >> end
  23. we really have no idea what you did
Add Comment
Please, Sign In to add comment