How would I assign a dynamic array to a hash table?
For example,
//Dynamic Array
DIM VALUES$
//Hash Table
DIM NAMES$
NAMES$["Luke"] = VALUES$
I essentially want
Key "Luke" = [1,2]
For example,
//Dynamic Array
DIM VALUES$
- = "1"
- = "2"
//Hash Table
DIM NAMES$
NAMES$["Luke"] = VALUES$
I essentially want
Key "Luke" = [1,2]