DMD 1.022 and 2.005 releases

0ffh spam at frankhirsch.net
Wed Oct 10 09:31:22 PDT 2007


0ffh wrote:
> //C
> int value = 100;
> int *rIntRef = value;

Okay, but only if you don't mind the core dump! =)

//C
int value = 100;
int *rIntRef;
rIntRef = &value;



More information about the Digitalmars-d-announce mailing list