summaryrefslogtreecommitdiffstats
path: root/test/D/AllAtOnce/Image/main.d
blob: 8b99458e061069a0ea6dfdfc286383c3533f423f (plain)
1
2
3
4
5
6
7
8
import std.stdio: writefln;
import amod: print_message;
import bmod: calculate_value;

void main() {
  print_message();
	writefln("The value is %d.", calculate_value());
}