How to import classABC? Here is my main.d
import std.stdio, std.conv, std.exception, std.math, std.random;
void main() {
ABC a = new ABC( a, b, c, d);
ABC b = new ABC( e, f, g, h);
ABC sum = a.sum( b);
writeln( a);
writeln( b);
writeln( sum);
}
}