Skip to content
Matthias Görges edited this page Mar 16, 2015 · 1 revision

destroy-store! destroys a data store.

Parameter Description
name The store name

Example

Example 1: Create a store, set a value, delete the store, and verify it is gone.

> (define store (make-store "main"))
> (store-set! store "HR" 78)        
> (destroy-store! store)
> (store? store)
#f
Clone this wiki locally