;;;; string-interpolation.scm -*- Scheme -*- ;;;; Kon Lovett, Jul '18 ;;;; Kon Lovett, Sep '17 (module string-interpolation (;export string-interpolate) ;reverse-list->string (import scheme (chicken base) (only (srfi 13) string-concatenate-reverse) (only (chicken string) ->string reverse-list->string) (chicken type) (only type-checks check-string) string-interpolation-syntax) ;;; (include "string-interpolation-body") ;;; (set-sharp-string-interpolation-syntax string-interpolate) ) ;string-interpolation