Time to rename "D" to "@D" !?
Grogan via Digitalmars-d
digitalmars-d at puremagic.com
Mon Jun 23 14:58:43 PDT 2014
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...
More information about the Digitalmars-d
mailing list