Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
doc:getting_started:lisp_crash_course [2022/05/17 09:01] khoshnamdoc:getting_started:lisp_crash_course [2022/05/17 11:41] (current) khoshnam
Line 912: Line 912:
 <code lisp> <code lisp>
 CL-USER>(setf a 10) CL-USER>(setf a 10)
-CL-USER>(if (a 20)+CL-USER>(if (a 20)
   (format t "~% a is less than 20")   (format t "~% a is less than 20")
  (format t "~% a is more than 20"))  (format t "~% a is more than 20"))