SDL vs. YAML

Sönke Ludwig sludwig at outerproduct.org
Fri Sep 13 08:40:32 PDT 2013


Am 13.09.2013 17:03, schrieb Andrej Mitrovic:
> On 9/13/13, Sönke Ludwig <sludwig at outerproduct.org> wrote:
>>> Here's the discussion about JSON vs. YAML vs. SDL on the dub forum:
>>>
>>> http://forum.rejectedsoftware.com/groups/rejectedsoftware.dub/thread/2/
>
> Can we specify values on multiple lines? E.g. this line:
>
> libs-windows "gdi32" "user32"
>
> To somehow use multi-line instead:
>
> libs-windows
>      "gdi32"
>      "user32"
>
> Even if we have to use the slash key for continuation (like in some
> languages) it would be useful to have, since it's then easy to quickly
> comment out a value by commenting out the entire line (well I have a
> key shortcut to quickly comment/uncomment a line, I'd like to be able
> to use it.).
>

Both of these should work:

libs-windows \
   "gdi32" \
   "user32"

libs-windows "gdi32"
libs-windows "user32"


More information about the Digitalmars-d mailing list