String Functions

Strings are allocated at runtime as needed.

(make-string k )
(make-string k char )
make a string of length k whose initial contents are char. The characters of the string are numbered from 0 to k - 1.

(string? obj )
tests whether obj is a string.

(string char_0 ... char_k-1 )
creates a string with a fixed number of characters.

Contents    Page-10    Prev    Next    Page+10    Index