Files
ground-programs/packages/lists/readme.md

15 lines
508 B
Markdown
Raw Normal View History

2025-09-18 19:57:24 +10:00
# Lists library
This library adds extra list manipulation functions to ground. It is entirely coded in ground.
Please note that you cannot copy a single function from the package, as some functions rely on other functions in the library (reliance on other functions is detailed below).
## Functions
### fun -string !ltos -list &inlist
2025-09-19 19:37:43 +10:00
Converts a list to a string, in the format [$item1, $item2, $item3, ...] (no prerequisites).
### fun -list !listremove -list &input
Removes the last item from a list.