cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+3 -3
View File
@@ -14,7 +14,7 @@ Joins all strings in `l` into a single `String`.
The delimiter is inserted between items. If `delim` is omitted, the default separator is a newline character.
Related:
- PHP: `implode()`
- JavaScript / Node.js: `Array.prototype.join()`
:example
StringList parts = split("a,b,c", ",");
print(join(parts, "-"), "\n");