Re: Access program args outside of main

2018-10-17 Thread Jordan Wilson via Digitalmars-d-learn
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


Re: Access program args outside of main

2018-10-17 Thread Stanislav Blinov via Digitalmars-d-learn
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


Access program args outside of main

2018-10-17 Thread Jordan Wilson via Digitalmars-d-learn

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