4.17.1 string declarations
--------------------------

Syntax:
string name = string_expression ;

string name = list_of_string_expressions ;

Purpose:
defines a string variable.

Default:
"" (the empty string)

Example:
  string s1="Now I know";
  string s2="how to encode a \" in a string...";
  string s=s1+" "+s2; // concatenation of 3 strings
  s;
==> Now I know how to encode a " in a string...
  s1,s2;   // 2 strings, separated by a blank in the output:
==> Now I know how to encode a " in a string...

<font size="-1">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; User manual for <a href="http://www.singular.uni-kl.de/"><i>Singular</i></a> version 2-0-4, October 2002,
generated by <a href="http://www.gnu.org/software/texinfo/"><i>texi2html</i></a>.
</font>

</body>
</html>
