DMD 0.165 release

BCS BCS at pathlink.com
Mon Aug 21 09:49:07 PDT 2006


Walter Bright wrote:
> I was going to call this 1.0 RC1, but I just could not resist adding the 
> lazy expression evaluation. This adds one of the big capabilities of 
> common lisp.
> 
> http://www.digitalmars.com/d/changelog.html

cool, I like it

given

void foo(char[]);
void foo(char[] delegate());

how do I force the use of  the first?

char[][] fig;
int i = 10;
fig.length = i;


while(i) foo(fig[--i]);	// --i must be evaluated







More information about the Digitalmars-d-announce mailing list