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

Reply via email to