11.2 条件判断(DONE)
(if nil
(print 'true)
'very-false)
=> very-falses(when condition a b c)(if condition (progn a b c) nil)(unless condition a b c)最后更新于
(if condition nil
a b c)(condition body-forms...)(condition)(cond ((numberp x) x)
((stringp x) x)
((bufferp x)
(setq temporary-hack x)
(buffer-name x))
((symbolp x) (symbol-value x)))(setq a 5)
(cond ((eq a 'hack) 'foo)
(t "default"))
=> "default"(if a b c)
(cond (a b) (t c))