Linking the following two files gives me a link-error:
a.d:
import std.stdio;
extern string test ();
void main() {
writeln(test());
readln();
}
b.d:
string test () {
return "hello";
}
the error I get is:
Error 42: Symbol Undefined _D1a4testFZAya`
---errorlevel 1
What is wrong ?
_________________________________________________
Edit: this is the right way to do it:
a.d:
import std.stdio;
import b;
void main() {
writeln("some_var from Module b: \"", b.some_var, "\"");
}
b.d:
public string some_var = "Hello, world!";
//you can also use static module constructors to set your vars
static this() {
some_var ~= " -- How are you?";
}
That code was kindly provided by Joshua Reusch in the excellent D forum for beginners in the digitalmars.com site.