scons_gd/scons/test/D/MixedDAndC/Image/proj.d
2022-10-15 16:06:26 +02:00

13 lines
165 B
D

import std.stdio;
import dmod;
extern (C) {
int csqr(int arg);
}
void main() {
print_msg();
auto i = 17;
writefln("The square of %d is %d", i, csqr(i));
}