grindem(expression*) → string
The subroutine grindem takes a sequential array of expressions as argument and returns as value the string composed of the string representations of the expressions in the array separated by suitable white spaces (spaces or carriage returns).
Call: grindem(['a'])
Exit: a
Call: grindem(['X'])
Exit: X
Call: grindem([["p","a","b"], ["p","b","c"]])
Exit: p(a,b) p(b,c)
|