SketchyLISP Reference |
Copyright (C) 2006 Nils M Holm |
<<[sqrt] | [Index] | [string->number]>> |
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.
<<[sqrt] | [Index] | [string->number]>> |