t3x.org / sketchy / library / nullp.html
SketchyLISP
Reference
  Copyright (C) 2007
Nils M Holm

null?

Conformance: R5RS Scheme

Purpose: Check whether a datum is an empty list.

Arguments:
X - datum

Model:

(define (null? x)
  (eq? x '()))

Implementation:

; This function is a primitive function.

Example:

(null? '()) 
=> #t

See also:
list?.