You don't need to declare a tuple type here: 
[http://nim-cookbook.btbytes.com/dsalgo.html](http://nim-cookbook.btbytes.com/dsalgo.html)
 It can be done with: 
    
    
    let address = ("Royal Rd", "Kingville", 11234)
    let (s,c,z) = address
    echo s
    echo c
    echo z
    

Reply via email to