You can qualify symbols with their module name, if that helps.
    
    
    # a.nim
    type int* = object
    
    # b.nim
    import a
    var x: a.int
    
    
    Run

Reply via email to