Only valid as the expression of a return statement!
Compiles directly to a multiple return in Lua. For example,
return $tuple(123, "abc", true); Copy
return $tuple(123, "abc", true);
will compile into
return 123, "abc", true Copy
return 123, "abc", true
Rest
Only valid as the expression of a return statement!
Compiles directly to a multiple return in Lua. For example,
will compile into