1. If I have a proc that accepts a "list" of number, but doesn't care if it's 
a seq or array, is there a simple way of declaring it's type in the proc's 
input parameters or do I need to use multiple dispatch and create one proc for 
seq and one proc for array?
  2. In Python if I want to return multiple variables from a proc I just do:


    
    
    return var1, var2, var3, var4
    
    
    Run

Is there a similar way of doing it in Nim if the variables have DIFFERENT types 
ie two strings, one int and one float? 

Reply via email to