Using LIST? To Identify Lists
> (list? ’(a b c))
#t
> (list? ’x)
#f
> (list? ’(a b c . d))
#f
> (list? () )
#t
Previous slide
Next slide
Back to first slide
View graphic version