summaryrefslogtreecommitdiff
path: root/xmake/templates/dlang/static/project/src/main.d
blob: bfcf9cf56c20fe4cabdb3ef82c92b8f360ca999a (plain)
1
2
3
4
5
6
7
import std.stdio;
import interfaces;

void main() {
    printf("add: %d\n", interfaces.add(1, 1));
    printf("sub: %d\n", interfaces.sub(2, 1));
}