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

string

Conformance: R5RS Scheme

Purpose: Create a string from arguments.

Arguments:
X... - chars

Implementation:

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

Example:

(string #\l #\i #\s #\p) 
=> "lisp"

See also:
list, vector.