t3x.org / sketchy / library / string.html
SketchyLISP
Reference
  Copyright (C) 2006
Nils M Holm

string

Conformance: R5RS

Purpose: Create a string from arguments.

Arguments:
X... - chars

Implementation:

(define (string . x)
  (list->string x))

Example:

(string #\a #\b #\c) 
=> "abc"

See also:
list.