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

Lisp Local Variables

; (let ((x 'a) (y 'b)(z 'c)) (format t "x = ~a y = ~a z = ~a" x y z)) ; t is for "standard output", "'a" is for symbol type 

; (let ((x 1) (y 2) (z 3)) (format t "(+ (x +(y z)))"))

 (+ (x +(y z)))

Advertisements
Loading...

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