accept @pure @nothrow @return attributes

Jacob Carlborg via Digitalmars-d digitalmars-d at puremagic.com
Fri Jan 30 01:24:05 PST 2015


On 2015-01-29 22:02, ketmar wrote:

> this never worked good. see deadalnix. or:
>
>    foo.bar
>      .zed
>

In Ruby ".zed" is not valid code, so in Ruby it means:

foo.bar.zed;

In D it, with my rules, it would mean:

foo.bar;
.zed;

In D you would need to write:

foo.bar.
   zed

-- 
/Jacob Carlborg


More information about the Digitalmars-d mailing list