Advertisement
Guest User

woo

a guest
May 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (def agents '#{Penny Colin})
  2. (def manipulables '#{ball chair})
  3.  (def platforms '#{table chair})
  4.  (def climbables '#{table chair})
  5.  
  6. (defn agent? [x] (agents x))
  7. (defn manipulable? [x] (manipulables x))
  8. (defn climbable? [x] (climbables x))
  9. (defn platform? [x] (platforms x))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement