There was an error while loading. Please reload this page.
⚠️ We have a new website! Visit now for the most update to date documentation. This wiki is no longer being maintained.
The _ARGS global variable stores any arguments to the current action. As an example, if this command line was used to launch Premake:
_ARGS
$ premake5 vs2012 alpha beta
...then _ARGS[1] will be set to "alpha" and _ARGS[2] to "beta". If there are no arguments this array will be empty.
_ARGS[1]
_ARGS[2]
Premake 4.0 or later.