string

string — constructs a string.

Syntax

string (s_exp...)

		

Arguments

s_exp

Any Gamma or Lisp expression.

Returns

A string which is the concatenation of all of the arguments.

Description

This function constructs a string by concatenating the princ names of all of the arguments. Any argument that can be evaluated will be. No separation is provided between arguments in the resulting string.

Example

Gamma> string("A list: ",list(#a,#b,#c), " and a sum: ",2 + 3);
"A list: (a b c) and a sum: 5"
Gamma> 
		

See Also

format