delete-lifo <list>
Copied!
new-lifo mylist // Add data to the list write-lifo mylist key "key1" value "value1" write-lifo mylist key "some2" value "other2" // Get first data from the list, it will be "some2" key read-lifo mylist key k value v // Delete first element from the list, so list will have only "key1" key delete-lifo mylistCopied!