How do I instantiate a hashtable in Nim that maps strings to objects of any 
type? None of these seem to work:
    
    
    import tables
    
    var t = newTable[string, any]()
    var t = newTable[string, ref]()
    var t = newTable[string, auto]()
    var t = newTable[string, object]()
    

In other words what's Nim equivalent of void*/Object/interface{}?

Reply via email to