my-test15   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/examples/core/extempore_lang.xtm

Implementation

;; now let's create a new function
;; that calls my-test14 twice
;; once normally
;; then we directly set the closures 'a' binding
;; then call again
;;
(bind-func my-test15
  (lambda (x:i32)
    (my-test14)
    (my-test14.a:i32 x)
    (my-test14)))


Back to Index