mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-26 19:32:22 +01:00
13 lines
165 B
D
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));
|
|
}
|