rocket-lang
rocket-lang copied to clipboard
Support having multiple return values
def multiple()
return "moo", 123, true
end
a, b, c = multiple()