Hi, I'm coming from Ruby where we can do
def method_that_returns_two_values
return 1, "abc"
end
v1, v2 = method_that_returns_two_values
v1 #=> 1
v2 #=> "abc"
Do we have a comparable approach in Nim, or should I just return an Array or Seq with two values?
