fharookshaik / fibonacci-series

This repository is to write program the famous Fibonacci series in as many different programming languages as we can.
MIT License
20 stars 101 forks source link

Add lisp #140

Open aestradaes opened 1 year ago

aestradaes commented 1 year ago

To test you can download the sbcl implementation of lisp here. To load the lisp file you can follow the tutorial here. Make sure you go to the lisp folder and type $ sbcl --load Lisp_fibonacii.lisp to load the lisp program. You can test the fibonacii functions in the lisp repl with (fibRecursive 9) or (fibIterative 90) (There is a * in front of these commands in the lisp repl).

aestradaes commented 1 year ago

Not sure where I messed up with checks, can anyone help me figure it out? I read the contributing.md and I named my Lisp file accordingly.