www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Access program args outside of main

reply Jordan Wilson <wilsonjord gmail.com> writes:
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
Oct 17 2018
parent reply Stanislav Blinov <stanislav.blinov gmail.com> writes:
On Wednesday, 17 October 2018 at 22:30:31 UTC, Jordan Wilson 
wrote:

 Ideally, I'd check args before I take the time to load up data.
https://dlang.org/phobos/core_runtime.html#.Runtime
Oct 17 2018
parent Jordan Wilson <wilsonjord gmail.com> writes:
On Wednesday, 17 October 2018 at 22:37:53 UTC, Stanislav Blinov 
wrote:
 On Wednesday, 17 October 2018 at 22:30:31 UTC, Jordan Wilson 
 wrote:

 Ideally, I'd check args before I take the time to load up data.
https://dlang.org/phobos/core_runtime.html#.Runtime
Here I was looking through std...thanks mate. Jordan
Oct 17 2018