Author |
Message |
Topic: std.socket |
kinghajj
Replies: 0
Views: 6960
|
Forum: General Posted: Sun Jul 25, 2004 12:37 am Subject: std.socket |
Does anyone have a better example on using std.socket? dsource's guide to creating a client program is good, but I don't get the "listener.d" that comes with DMD. Thx! |
Topic: Compiler Optimization |
kinghajj
Replies: 13
Views: 32059
|
Forum: General Posted: Tue Jul 13, 2004 8:54 pm Subject: Compiler Optimization |
I use "strip" to take out the unneeded crap from the executables, then "upx" to compress them. I got a 120k program down to a nice 36k |
Topic: Reference and Pointer |
kinghajj
Replies: 9
Views: 19577
|
Forum: General Posted: Tue Jul 13, 2004 8:47 pm Subject: ... |
Don't use pointers unless you REALLY need to. From what I've read, pointers are in D mostly for interfacing with C libraries.
In your example, c1 and c2 have the same value, though are in a differe ... |
|