Added documentation for lists
All checks were successful
Build / build (push) Successful in 2m10s

This commit is contained in:
Leon Mika 2025-01-24 13:30:09 +11:00
parent a3b9f399e1
commit ef8d6f3067
2 changed files with 14 additions and 0 deletions

View file

@ -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

13
_docs/mod/list.md Normal file
View file

@ -0,0 +1,13 @@
---
---
# List Builtins
### add
```
lists:add LIST [ARGS...]
```
Adds values to the end of the list. Returns the modified list.