digitalmars.D - dmd 0.93?
- Carlos Santander B. (4/4) Jun 20 2004 Walter, in the changelog version 0.93 is mentioned (even if you never
- J C Calvarese (26/31) Jun 20 2004 My guess is that it's foreshadowing. I re-downloaded from the website
- Walter (3/34) Jun 20 2004 .93 isn't done yet!
Walter, in the changelog version 0.93 is mentioned (even if you never posted anything about it), but the file is still for 0.92. ----------------------- Carlos Santander Bernal
Jun 20 2004
Carlos Santander B. wrote:Walter, in the changelog version 0.93 is mentioned (even if you never posted anything about it), but the file is still for 0.92. ----------------------- Carlos Santander BernalMy guess is that it's foreshadowing. I re-downloaded from the website and re-installed and it seems to be the same as DMD 0.92. In particular, the char/wchar/dchar init values seem to be unchanged. void main() { if(char.init == 0) printf("DMD 0.92 char.init.\n"); if(wchar.init == 0) printf("DMD 0.92 wchar.init.\n"); if(dchar.init == 0) printf("DMD 0.92 dchar.init.\n"); if(char.init == 0xFF) printf("DMD 0.93 char.init.\n"); if(wchar.init == 0xFFFF) printf("DMD 0.93 wchar.init.\n"); if(wchar.init == 0x0000FFFF) printf("DMD 0.93 dchar.init.\n"); } Output: DMD 0.92 char.init. DMD 0.92 wchar.init. DMD 0.92 dchar.init. -- Justin (a/k/a jcc7) http://jcc_7.tripod.com/d/
Jun 20 2004
.93 isn't done yet! "J C Calvarese" <jcc7 cox.net> wrote in message news:cb5i92$2clv$1 digitaldaemon.com...Carlos Santander B. wrote:Walter, in the changelog version 0.93 is mentioned (even if you never posted anything about it), but the file is still for 0.92. ----------------------- Carlos Santander BernalMy guess is that it's foreshadowing. I re-downloaded from the website and re-installed and it seems to be the same as DMD 0.92. In particular, the char/wchar/dchar init values seem to be unchanged. void main() { if(char.init == 0) printf("DMD 0.92 char.init.\n"); if(wchar.init == 0) printf("DMD 0.92 wchar.init.\n"); if(dchar.init == 0) printf("DMD 0.92 dchar.init.\n"); if(char.init == 0xFF) printf("DMD 0.93 char.init.\n"); if(wchar.init == 0xFFFF) printf("DMD 0.93 wchar.init.\n"); if(wchar.init == 0x0000FFFF) printf("DMD 0.93 dchar.init.\n"); } Output: DMD 0.92 char.init. DMD 0.92 wchar.init. DMD 0.92 dchar.init. -- Justin (a/k/a jcc7) http://jcc_7.tripod.com/d/
Jun 20 2004