module pind.samples.ja.if_.if_1; import std.stdio; void main() { bool existsCoffee = true; if (existsCoffee) { writeln("Drink coffee"); writeln("Wash the cup"); } }