(dict-remove! dictionary key) -> #f
Destructively removes the pair associated with key from dictionary.
Example:
>>(define a (dict '(alpha 1) '(beta 2) '(gamma 3))) :: #f >>(dict-remove! a 'alpha) :: #f
>>a :: [dict (gamma 3) (beta 2)]