;;;; utf8-string-interpolation.scm -*- Scheme -*- ;;;; Kon Lovett, Jul '18 ;;;; Kon Lovett, Sep '17 (module utf8-string-interpolation (string-interpolate) (import scheme (chicken base) (chicken platform) string-interpolation-syntax utf8-string-interpolator) (set-sharp-string-interpolation-syntax (if (or (feature? 'insanity) (not (feature? 'sanity))) string-interpolate string-interpolate/sanity)) ) ;utf8-string-interpolation