Guest User

Untitled

a guest
Aug 24th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #(loop [n % a 0 b 1 stuff []]
  2.    (if (= n 0)
  3.      (reverse stuff)
  4.      (recur (- n 1) b (+ a b) (concat [b] stuff))
  5.    )
  6.  )
Add Comment
Please, Sign In to add comment