Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

fibo_in_lisp

(write-line "Hello World")
(defun fibonacci (n)
  (if (< n 3)
      1
      (+ (fibonacci (- n 1)) (fibonacci (- n 2))) ) )
;(princ "Enter Number: ")
;(setq num (read))
(loop for i from 1 to 20
   do (format t "~D, " (fibonacci i)))
   

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.