mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-24 19:26:41 +01:00
9 lines
172 B
D
9 lines
172 B
D
import std.stdio: writefln;
|
|
import amod: print_message;
|
|
import bmod: calculate_value;
|
|
|
|
void main() {
|
|
print_message();
|
|
writefln("The value is %d.", calculate_value());
|
|
}
|