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