module pind.samples.ja.if_.if_2; 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"); }