summaryrefslogtreecommitdiffstats
path: root/test/D/MixedDAndC/Image/proj.d
blob: 3e0bf9510defa108b5e862e239e761dc2ffdd12f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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));
}