2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: build-string
|
|
|
|
layout: command
|
|
|
|
version: 0.59.0
|
|
|
|
---
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Create a string from the arguments.
|
|
|
|
|
|
|
|
## Signature
|
|
|
|
|
|
|
|
```> build-string ...rest```
|
2021-05-30 02:57:04 +02:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
- `...rest`: list of string
|
2021-05-30 02:57:04 +02:00
|
|
|
|
|
|
|
## Examples
|
2022-02-14 03:22:51 +01:00
|
|
|
|
|
|
|
Builds a string from letters a b c
|
|
|
|
```shell
|
|
|
|
> build-string a b c
|
|
|
|
```
|
|
|
|
|
|
|
|
Builds a string from letters a b c
|
2021-05-30 02:57:04 +02:00
|
|
|
```shell
|
2022-02-14 03:22:51 +01:00
|
|
|
> build-string (1 + 2) = one ' ' plus ' ' two
|
|
|
|
```
|