Maybe not the best way or a way that meets any constraints, but a way. :)
    
    
    import sequtils
    
    var s: seq[string]
    
    for (v1,v2) in zip([1,2,3], ["a","b","c"]):
      s.add($v1)
      s.add(v2)
    
    echo s
    
    
    Run

Reply via email to