Why does the following snippet print:
"Started name revision" instead of "Started my-app 1.0a"?
import std.stdio;
enum application : string
{
name = "my-app",
revision = "1.0a",
}
void main(string[] arguments)
{
writefln("Started %s %s", application.name,
application.revision);
}