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