The following program prints out OS = win32. Is this the intended behavior?
#!/usr/local/bin/rdmd import std.stdio; import std.system; void main (string[] args) { immutable OS os; writefln("OS = %s",os); }
Dave Chapman via Digitalmars-d-learn Wed, 01 Feb 2017 13:37:42 -0800
The following program prints out OS = win32. Is this the intended behavior?
#!/usr/local/bin/rdmd import std.stdio; import std.system; void main (string[] args) { immutable OS os; writefln("OS = %s",os); }