tlang/source/tlang/commandline/args.d

9 lines
234 B
D
Raw Normal View History

2021-03-02 19:14:23 +00:00
module commandline.args;
import jcli.commandgraph.cli;
2021-03-02 19:14:23 +00:00
void parseCommandLine(string[] arguments)
2021-03-02 19:14:23 +00:00
{
/* Parse the command-line arguments */
matchAndExecuteAcrossModules!(commandline.commands)(arguments[1..arguments.length]);
2021-03-02 19:14:23 +00:00
}