Hashtable class in LotusScript

Yet another class to use at your own risk. Be advised that this is not a REAL hashtable… If anyone has suggestions how to make one, please contact me. Can be used like:

 Dim table As New Hashtable() Call table.put("Name", "Lotus Domino") Call table.put("Address", "Irisblvd 1") Call table.put("City", "Notestown") Print "City is: " & table.get("City")