The DUB package manager

Jacob Carlborg doob at me.com
Sun Feb 17 04:42:01 PST 2013


On 2013-02-17 02:49, Nick Sabalausky wrote:

> I largely agree, except:
>
> 1. For simple projects with trivial build system requirements, D is
> overkill compared to a purely data-only language.

It might be but the syntax is no that different:

Yaml:

flags: "-l-L. -release"
foo: "bar"

Json:

{
   "flags": "-l-L. -release"
   "foo": "bar"
}

D:

flags = "-l-L. -release";
foo = "bar";

In this example D has less syntax than Json.

-- 
/Jacob Carlborg


More information about the Digitalmars-d mailing list