mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
13 lines
119 B
D
13 lines
119 B
D
module sqrts;
|
|
|
|
import tango.stdc.math;
|
|
|
|
double sqrt(double d)
|
|
{
|
|
return tango.stdc.math.sqrt(d);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|