impc:ti:format   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/llvmti.xtm

Implementation

(define impc:ti:format
  (lambda (ast)
    (if (null? ast) 'null
        (list 'cat
              (if (string? (car ast))
                  (list 'Str (car ast))
                  (list 'format (car ast)))
              (impc:ti:format (cdr ast))))))


Back to Index

Similar Entries