xxxxxxxxxx
--- test.d
import std.stdio;
void main()
{
writeln("Hello D2: ", __FILE__);
import bar;
foo();
}
--- bar.d
void foo()
writeln("hi");