You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2019. It is now read-only.
In Lua it is possible to have vararg functions, I'm sure you should know what they are as they're in multiple languages, I think blockly-lua having support would be good.
examples
localargs= {...} -- getting all the runtime args of the programlocalfunctionfoo(...) -- vararg functionlocalargs= {...} -- varargs of the functionprint(...) -- print is a vararg function it will concat all these together and output themend-- calling vararg functions is not a static amountfoo("bar")
foo("bar", "hello", "world")