Variable Test


; Test a symbol to see if it is a variable:
;   starting with ?
(define (var? v)
  (and (symbol? v)
       (char=? (string-ref (symbol->string v)
                           0)
               #\?)))

Contents    Page-10    Prev    Next    Page+10    Index