string-helpers.scm 216 B

1234567891011
  1. (library (string-helpers)
  2. (export char->string)
  3. (import (except (rnrs base) error)
  4. (only (guile)
  5. lambda* λ))
  6. (define char->string
  7. (λ (char)
  8. (list->string (list char)))))