Syntax
int hashtable_create ()
Description
hashtable_create creates a new hash table that can be used to store key-value pairs in a format that allows more efficient searching than an array.
Returns an identifier that you can use to add entries to and search the hash table.
Example
hid=hashtable_create(); hashtable_add(hid, "unxadm", {"johnd", "davel", "jamesp"}); hashtable_add(hid, "winadm", {"marym", "stevec", "janel"}); print("Windows Admin Group:" + hashtable_lookup(hid, "winadm"));