Re: Uniform Function Call Syntax in D - GameDev.net

2012-07-03 Thread d coder
Thanks to C++ for inspiration, I even have proposal for such syntax! obj.free myFunc( args ) obj.member myFunc( args ) How about: obj.myFunc( args ); // calls member function, even if free function exists myFunc( obj, args ); // calls free function, even if member function

Re: A tutorial on D templates

2012-01-15 Thread d coder
https://github.com/PhilippeSigaud/D-templates-tutorial/blob/master/dtemplates.pdf can't open the pdf with acrobat reader under win7 :( (the file seems to be ok, contains the pdf header) im using the latest acrobat reader x Same here. When I regenerated the pdf after cloning the git

Re: A tutorial on D templates

2012-01-15 Thread d coder
Btw, it's cool you could generate the pdf. Did you have minted and pygments already installed? No. But I downloaded minted.sty and apt-get pygmentize when pdflatex failed. Don't hesitate to tell me where it's unclear. If you have any example in mind or some difficulty that constantly trip

Re: dmd 1.070 and 2.055 release

2011-09-08 Thread d coder
Is there any way to drown those deprecation notices? I get a wall of notices every time I compile.. Would this DMD option help? -d allow deprecated features