Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. (defn adam-func
  2. ([input-list]
  3. (adam-func input-list '"" 0)
  4. )
  5. ([remaining-list string image-num]
  6. (cond
  7. (empty? remaining-list)
  8. string
  9.  
  10. :else
  11. (adam-func remaining-list (str string " Image number " image-num " contains " (traverse (first (remaining-list))) " war eagles.\n") (inc image-num))
  12.  
  13.  
  14. )
  15. )
  16. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement