Initial revision
[LeanCalc.git] / help / strcat
1 NAME
2     strcat - concatenate strings
3
4 SYNOPSIS
5     strcat(x1, x2, ...)
6
7 TYPES
8     x1, x2, ...         strings
9
10     return              string
11
12 DESCRIPTION
13     strcat(x1, x2, ...) forms a string starting with a copy of
14     x1, followed by the characters in order of x2, etc.  The
15     length of the resulting string will be the sum of the lengths
16     of the component strings.
17
18 EXAMPLE
19     > A = "abc"; B = "XY"; C = "  ";
20     > print strcat(A, B, C, B, A)
21     abcXY  XYabc
22
23 LIMITS
24     The number of arguments may not to exceed 100.
25
26 LINK LIBRARY
27     none
28
29 SEE ALSO
30     XXX - fill in
31