2 remove - remove the last member of a list
8 lst lvalue whose current value is a list
13 If lst has no members, remove(lst) returns the null value and does
16 If lst has n members where n > 0, remove(lst) returns the value of
17 lst[[n-1]] and deletes this value from the end of the lst, so that
18 lst now has n - 1 members and for 0 <= i < n - 1, lst[[i]] returns
19 what it would have returned before the remove operation.
22 > lst = list(2,"three")
24 list (2 elements, 2 nonzero):
32 list (1 elements, 1 nonzero):
38 list (0 elements, 0 nonzero)
41 list (0 elements, 0 nonzero)
50 append, delete, insert, islist, list, push, pop, rsearch, search, size