Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.18 KB | None | 0 0
  1. def not_false
  2.     puts 'In not false'
  3.     true
  4. end
  5.  
  6. def not_true
  7.     puts 'In not true'
  8.     nil
  9. end
  10.  
  11. not_false && not_true
  12. not_true && not_false
  13. not_false || not_true
  14. not_true || not_false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement