cas2sexpr   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/contrib/cas.xtm

Implementation

(define (cas2sexpr . args)
  (list 'quote (scmcas 'eval (apply string-append (map (lambda (x) 
                                                         (if (string? x) 
                                                             x
                                                            (sexpr->string x))) 
                                                       args)))))


Back to Index