Thread overview
Metaprogramming in D
Apr 28, 2009
Walter Bright
Apr 28, 2009
Luís Marques
Apr 28, 2009
Ary Borenszweig
Apr 28, 2009
Luís Marques
Apr 28, 2009
Clay Smith
Apr 28, 2009
Georg Wrede
May 03, 2009
digited
May 03, 2009
Simen Kjaeraas
April 28, 2009
This is a talk I gave last January for the NWCPP:

http://www.vimeo.com/4333802

http://www.reddit.com/r/programming/comments/8fymt/walter_bright_explains_metaprogramming_in_the_d/
April 28, 2009
Walter Bright wrote:
> This is a talk I gave last January for the NWCPP:
> 
> http://www.vimeo.com/4333802
> 
> http://www.reddit.com/r/programming/comments/8fymt/walter_bright_explains_metaprogramming_in_the_d/ 
> 

Great video.

(I found it funny how someone asked about using the 'with' statement with declaration templates. Walter said "I don't think I've ever tried that". -- I think the answer was no, but that part was hard to hear)
April 28, 2009
Luís Marques wrote:
> Walter Bright wrote:
>> This is a talk I gave last January for the NWCPP:
>>
>> http://www.vimeo.com/4333802
>>
>> http://www.reddit.com/r/programming/comments/8fymt/walter_bright_explains_metaprogramming_in_the_d/ 
>>
> 
> Great video.
> 
> (I found it funny how someone asked about using the 'with' statement with declaration templates. Walter said "I don't think I've ever tried that". -- I think the answer was no, but that part was hard to hear)

Me too! :-P

But I tried it and it works.
April 28, 2009
Walter Bright wrote:
> This is a talk I gave last January for the NWCPP:
> 
> http://www.vimeo.com/4333802
> 
> http://www.reddit.com/r/programming/comments/8fymt/walter_bright_explains_metaprogramming_in_the_d/ 
> 

Cool video : )
April 28, 2009
Ary Borenszweig wrote:
>> (I found it funny how someone asked about using the 'with' statement with declaration templates. Walter said "I don't think I've ever tried that". -- I think the answer was no, but that part was hard to hear)
> 
> Me too! :-P
> 
> But I tried it and it works.

ISO is going to have lots of fun trying to standardize D ;-)
April 28, 2009
Clay Smith wrote:
> Walter Bright wrote:
>> This is a talk I gave last January for the NWCPP:
>>
>> http://www.vimeo.com/4333802
>>
>> http://www.reddit.com/r/programming/comments/8fymt/walter_bright_explains_metaprogramming_in_the_d/ 
>>
> 
> Cool video : )

Yeah. Makes you wish you'd live around there.
May 03, 2009
Walter Bright пишет:
> This is a talk I gave last January for the NWCPP:
> 
> http://www.vimeo.com/4333802
> 
> http://www.reddit.com/r/programming/comments/8fymt/walter_bright_explains_metaprogramming_in_the_d/ 
> 
Nice video!

What happened to the last part, about enums & strings? Can I read somewhere about conversions [enum -> corresponding string name]?
May 03, 2009
On Sun, 03 May 2009 09:18:41 +0200, digited <digited@yandex.ru> wrote:

> Walter Bright пишет:
>> This is a talk I gave last January for the NWCPP:
>>  http://www.vimeo.com/4333802
>>  http://www.reddit.com/r/programming/comments/8fymt/walter_bright_explains_metaprogramming_in_the_d/  
>>
> Nice video!
>
> What happened to the last part, about enums & strings? Can I read somewhere about conversions [enum -> corresponding string name]?

http://www.digitalmars.com/d/2.0/phobos/std_typecons.html#defineEnum

Not sure if there is anything like it in D1.

--
 Simen