helper:min   scheme


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

Implementation

;; min & max
;;;;;;;;;;;;
;; (log-info (max '(3 3  3 2 7 23 7 )))
(define (helper:min a b) (if (< a b) a b))


Back to Index

Similar Entries