2022-02-14 02:22:51 +00:00
|
|
|
---
|
|
|
|
title: append
|
|
|
|
layout: command
|
2022-03-04 12:10:09 +00:00
|
|
|
version: 0.59.1
|
2022-02-14 02:22:51 +00:00
|
|
|
---
|
2020-06-23 18:21:47 +00:00
|
|
|
|
2020-10-22 08:26:30 +00:00
|
|
|
Append a row to the table.
|
2019-11-15 14:37:41 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
## Signature
|
2020-06-23 18:21:47 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
```> append (row)```
|
2019-11-15 14:37:41 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
## Parameters
|
2019-11-15 14:37:41 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
- `row`: the row to append
|
2019-11-15 14:37:41 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
## Examples
|
2019-11-15 14:37:41 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Append one Int item
|
2019-11-15 14:37:41 +00:00
|
|
|
```shell
|
2022-02-14 02:22:51 +00:00
|
|
|
> [0,1,2,3] | append 4
|
2019-11-15 14:37:41 +00:00
|
|
|
```
|
2020-10-22 08:26:30 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Append three Int items
|
2020-10-22 08:26:30 +00:00
|
|
|
```shell
|
2022-02-14 02:22:51 +00:00
|
|
|
> [0,1] | append [2,3,4]
|
2020-10-22 08:26:30 +00:00
|
|
|
```
|
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Append Ints and Strings
|
2020-10-22 08:26:30 +00:00
|
|
|
```shell
|
2022-02-14 02:22:51 +00:00
|
|
|
> [0,1] | append [2,nu,4,shell]
|
2020-10-22 08:26:30 +00:00
|
|
|
```
|