Walter Bright wrote:
Now includes Mac OSX version!
http://www.digitalmars.com/d/1.0/changelog.html
http://ftp.digitalmars.com/dmd.1.040.zip
http://www.digitalmars.com/d/2.0/changelog.html
http://ftp.digitalmars.com/dmd.2.025.zip
Expect bugs. Thread local storage isn't working on OSX, neither are
sockets and memory mapped files (for unknown reasons).
Thanks to Sean Kelly for a lot of help on the runtime library with this.
Would you please fix bug #2479. Haven't been able to use any release
since 2.021.
The problem is the variable arguments as used in sformat (where there is
an addition argument to the vararg list)
import std.stdio;
import std.string;
void main()
{
char [32]msg;
sformat(msg,"%s","Hello");
writefln(msg);
}