concat function:
Concat all string arguments.
Examples:
- running:
(concat "one", " ", "two")will give:"one two"
- running:
(concat "one", " ", 2)will return nothing
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
concat function:Concat all string arguments.
(concat "one", " ", "two")
will give: "one two"(concat "one", " ", 2)
will return nothing