module pind.samples.ja.functions.functions_1; import std.stdio; void printMenu() { writeln(" 0 Exit"); writeln(" 1 Add"); writeln(" 2 Subtract"); writeln(" 3 Multiply"); writeln(" 4 Divide"); } void main() { printMenu(); // ... }