local variable creation Local variable creation
Most local variables are created and bound with let or let*
cl-user(4): (let* ((x 0)
(y (* 2 3))
z)
(print z)
(format t "~%(~a,~a)" x y))
NIL
(0,6)
NIL [return value]
cl-user(5):
format directives used:
~% means newline
~a means display argument
Previous slide
Next slide
Back to first slide
View graphic version