DICTIONARY.remove
Removes an element of the dictionary identified by the key.
Syntax
remove( key STRING )
- key is the dictionary key of the element to remove.
 
Usage
The remove() method deletes and element of the dictionary, identified by the key
passed as paramater.
Example
MAIN
    DEFINE dict DICTIONARY OF STRING
    LET dict["abc"] = 111
    CALL dict.remove("abc")
    DISPLAY dict.contains("abc") -- shows 0 (FALSE)
END MAIN