How should I get the raw command line arguments to a lua program? I am using a lua implementation of Argparse, and by default it uses the arg table, which doesn't appear to exist in OpenOS. Is there another way to get the arguments as a table, or is this a bug?
MC: 1.10.2
OC: 1.6.2-dev-294a09edd
Forge: 12.18.3.2297
local arguments_as_a_table = {...}
@payonel Thanks! That works!
Most helpful comment
local arguments_as_a_table = {...}