doc updates

This commit is contained in:
2021-03-08 00:15:02 +01:00
parent e0ec884394
commit b4862ee196
3 changed files with 8 additions and 160 deletions

View File

@@ -29,7 +29,7 @@
|`(/ a b)`|Divide two values|result of division|
|`(% a b)`|Remainder of division|result of operation|
|`(list ..)`|Create a list of values||
|`(insert list index element)`|Insert an element into a lis.Indexed from 0|new list with value inserted|
|`(insert list index element)`|Insert an element into a list. Indexed from 0|new list with value inserted|
|`(index list index)`|Return element at index in list|Element at index|
|`(remove list index)`|Remove a value at an index from a list|List with element removed|
|`(len list)`|Get the length of a list|list length|
@@ -58,8 +58,8 @@
|`(read-url ..)`|||
|`(system-cmd ..)`|||
|`(ls-dir ..)`|||
|`(is-file? ..)`|||
|`(is-dir? ..)`|||
|`(is-file? ..)`|Returns true if passed filename is a file||
|`(is-dir? ..)`|Returns true if passed filename is a directory||
|`(parse-csv ..)`|||
|`(parse-json ..)`|||
|`(save-csv ..)`|||