negative?   scheme


Defined in:  https://github.com/lambdamusic/extempore-extensions/blob/main/init/init_lisp.xtm

Implementation

;; negative?
;;;;;;;;;;;;
(define negative?
  (lambda (x)
    (if (< x 0)
        #t
        #f)
    ))


Back to Index