module sqrts; import tango.stdc.math; double sqrt(double d) { return tango.stdc.math.sqrt(d); } void main() { }