15 lines
238 B
Markdown
15 lines
238 B
Markdown
# kickstart.print_with_separator separator [arguments...]
|
|
|
|
Print the list of `arguments` separated by `separator`
|
|
|
|
|
|
### Example
|
|
|
|
```bash
|
|
$ kickstart.print_with_separator , a b c
|
|
a,b,c
|
|
|
|
$ kickstart.print_with_separator '|' a b c
|
|
a|b|c
|
|
```
|