From ef8d6f3067a30b54c46c6e61546af7ef09c2e95f Mon Sep 17 00:00:00 2001 From: Leon Mika Date: Fri, 24 Jan 2025 13:30:09 +1100 Subject: [PATCH] Added documentation for lists --- _docs/mod/index.md | 1 + _docs/mod/list.md | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 _docs/mod/list.md diff --git a/_docs/mod/index.md b/_docs/mod/index.md index 0c4707e..9c01f8a 100644 --- a/_docs/mod/index.md +++ b/_docs/mod/index.md @@ -5,4 +5,5 @@ Modules of the standard library: - [core](/mod/core): Core builtins - [csv](/mod/csv): Functions for operating over CSV data. - [fs](/mod/fs): File system functions +- [lists](/mod/lists): List utilities - [os](/mod/os): Operating system functions \ No newline at end of file diff --git a/_docs/mod/list.md b/_docs/mod/list.md new file mode 100644 index 0000000..edddc09 --- /dev/null +++ b/_docs/mod/list.md @@ -0,0 +1,13 @@ +--- +--- + +# List Builtins + +### add + +``` +lists:add LIST [ARGS...] +``` + +Adds values to the end of the list. Returns the modified list. +