Hello,
Is there a way to access command line arguments outside of main?
// main.d
module main;
import data;
void main(string args[]) {
}
// data.d
module data
immutable programData;
static this() {
     // read in data
}
Ideally, I'd check args before I take the time to load up data.
Thanks,
Jordan