1; SketchyLISP Library
2; Copyright (C) 2005,2006,2007 Nils M Holm. All rights reserved.
3; See the file LICENSE of the SketchyLISP distribution
4; for conditions of use.
5
6; ---name---
7; string
8
9; ---conformance---
10; R5RS
11
12; ---purpose---
13; Create a string from arguments.
14
15; ---args---
16; X... - chars
17
18; ---keywords---
19; STRING function, char, string
20
21; ---see-also---
22; list, vector
23
24; ---example---
25; (string #\l #\i #\s #\p) => "lisp"
26
27(define string #t)
28
29; ---code---
30(define (string . x)
31  (list->string x))
32