;;;; string-interpolator.scm -*- Scheme -*- ;;;; Kon Lovett, Aug '19 (declare (bound-to-procedure ##sys#print-to-string)) (module string-interpolator (;export string-interpolate string-interpolate/sanity) ;reverse-list->string (import scheme (chicken base) (chicken platform) (chicken type) (only (chicken string) reverse-list->string) (only (srfi 1) reverse!) (only (srfi 13) string-concatenate-reverse)) (include "string-interpolation-body") ) ;string-interpolator