my-test26   xtlang


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

Implementation

;; build a list (using cons) and then call my-test25
(bind-func my-test26
  (lambda ()
    (let ((my-list (cons-i64 1 (cons-i64 2 (cons-i64 3 null)))))
      (my-test25 my-list))))


Back to Index