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

Execute LISP Online

(PRINT ((LAMBDA (L1 L2 L3) (LIST (CAR L1) (CAR L2) (CAR L3))) '(TYPE PRINT DEL) '(H '(H J O) '(U J N)) '(READ SAVE LOAD (TXT))))

(DEFUN COMBINE (L1 L2 L3) (LIST (THIRD L1) (SECOND L2) (THIRD L3)))

(PRINT (COMBINE '(TYPE PRINT DEL) '(H '(H J O) '(U J N)) '(READ SAVE LOAD (TXT))))

(DEFUN ISEXP (A B C) (= C (EXPT A B)))

(PRINT (ISEXP 2 4 16))

Advertisements
Loading...

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