Hello.
When I have three files test1.d test2.d test3.d as follows:
module test1;
import tango.io.Stdout;
import test3;
static this(){
Stdout("test1\n");
}
module test2;
import test1;
//no ctor
module test3;
import tango.io.Stdout;
import test2;
static this(){
Stdout("test3\n");
}
a
Jimi_Hendrix wrote:
> Hi, I am new to D but not to programming. I have had some socket experience
> before. How would i connect to a server using sockets in D? A link to a D
> socket tutorial (if one exists) would also be appreciated.
>
> by the way, first post to a newsgroup for me
As certa
On Wed, 28 Jan 2009 23:17:45 +, Spacen Jasset wrote:
> Has anyone encountered this problem before?
ive noticed it happens often if i forget the closing } or ] on struct/
array literals ex:
foo([1,2,3);