Guest User

Untitled

a guest
Feb 21st, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. >> hammer_of_truth = true
  2. >> anvil_of_false = false
  3.  
  4. >> sword = hammer_of_truth && anvil_of_false
  5. => false
  6. >> sword
  7. => false
  8.  
  9. >> sword = hammer_of_truth and anvil_of_false
  10. => false
  11. >> sword
  12. => true # oops
Add Comment
Please, Sign In to add comment