module pind.samples.ja.if_.if_solution_1; import std.stdio; void main() { bool existsLemonade = true; if (existsLemonade) { writeln("Drinking lemonade"); writeln("Washing the cup"); } else { writeln("Eating pie"); writeln("Washing the plate"); } }