string
string — constructs a string.
string (s_exp...)
s_expAny Gamma or Lisp expression.
A string which is the concatenation of all of the arguments.
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.
Gamma>string("A list: ",list(#a,#b,#c), " and a sum: ",2 + 3);"A list: (a b c) and a sum: 5"Gamma>