fib.l 258 B

1234567891011121314151617181920212223
  1. (
  2. (def fib (fn on (do
  3. (let i 1)
  4. (print i)
  5. (let j 1)
  6. (print j)
  7. (let r 1)
  8. (print r)
  9. (let n on)
  10. (print on)
  11. (print n)
  12. (print (gt n 2))
  13. (while (gt n 2) (do
  14. (let r (+ i j))
  15. (let i j)
  16. (let j r)
  17. (let n (- n 1))
  18. ))
  19. r
  20. )))
  21. )