When two proc have the same name, how can I get the proc address? 
    
    
    proc p2(x: int) =
       echo x
    
    proc p2(x: string) =
       echo x
    
    let t1 = p2 # ????????
    
    
    Run

Reply via email to