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. +