On 11/25/11 2:13 AM, Jude Young wrote:
Is there an easy way to turn D style (string[] args) into C style?
Hm, I expected this would work: extern(C) int __argc; extern(C) char** __argv;The symbols do exist at least on OSX (no linker error) but they are both zero, so apparently druntime doesn't initialize them.
Andrei