On Tue, Jun 7, 2016 at 4:42 AM, Taylan Ulrich Bayırlı/Kammer <xxxxxx@gmail.com> wrote:
Is #"foo" used by any Scheme implementation for anything?  I seem to
remember it is, but don't remember which implementation and for what.

Gauche uses the syntax for string interpolation.  #"Result: ~(get-result)." is read as (string-interpolate "Result :" (get-result) ".").