A few notes on choosing between Go and D for a quick project

Walter Bright via Digitalmars-d digitalmars-d at puremagic.com
Sun Mar 15 02:13:19 PDT 2015


On 3/14/2015 10:28 PM, deadalnix wrote:
> I use them all the time, and cringe whenever I code in something else because i
> don't have them. Once you have /* comments */ in some piece of code, you can't
> comment blocks without going through hoops. that is very annoying./+ comments +/
> are one of the simple thing that makes coding in D much more pleasant.

Use:

    version (none)
    {
       ...
    }

instead of:

    /+
       ...
     +/

On a related note, see how difficult it is to remove a feature? Every time I 
propose one, someone pops up and says they built their life around it :-)


More information about the Digitalmars-d mailing list