On Monday, 23 June 2014 at 17:30:19 UTC, John wrote:
The @ symbols used on all those attributes like @nogc @nothrow @pure @safe make the D code look ugly.

If possible, please get rid of those @ symbols. The attributes look good without the "@" symbols.

Give up this idea, right now.
Grammatically it would break all the code using identifiers such as 'safe'...
I think it's just not possible. interesting example:
---------------------------
import std.stdio;

@safe int safe()
{
        auto i = 8;
        return i;
}

void main(string ars[])
{
        writeln(safe);
        
}
---------------------------

What you want is just impossible...

Reply via email to