linker error
lodo
lodovico at giaretart.net
Mon Jul 9 01:45:23 PDT 2012
When I try to compile the code below I get this error:
prova00.obj(prova00)
Error 42: Symbol Undefined _D6prova013implementThisFZi
--errorlevel 1
This is my code:
File prova0.d:
import std.stdio;
int implementThis();
void callThis()
{
writefln("%d",implementThis());
}
File prova00.d:
import prova0;
int implementThis()
{
return 42;
}
void main()
{
callThis();
}
Can someone help me, please?
More information about the Digitalmars-d-learn
mailing list