hold   macro


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/pattern-language.xtm

Implementation

(define-macro (hold h pos expr)
  (let* ((localpos (modulo pos 1))
         (num (- pos localpos)))
    `(,h ,num ,expr LC LP LL)))


Back to Index

Similar Entries