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