Hi luvnim, you are iterating over the character of the string array; not the
seq. try this:
var str_seq = @["10", "30", "40", "50", "80"]
for m in str_seq:
echo "=> " & m
Runbtw, which version of nim are you using? I'll get the error on your 2nd line: Error: type mismatch: got <seq[string]> but expected 'string'
