helper:inner-do-add   scheme


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

Implementation

; helper:inner-do-add
;;;;;;;;;;;;
;; helper: add two numbers or symbols (standing for numbers, eg d5)
(define helper:inner-do-add
  (lambda (x y)
    (+ (eval x) (eval y))))


Back to Index