module pind.samples.ja.logical_expressions.logical_expressions_1; import std.stdio; void main() { // falseは"いいえ"、trueは"はい"を意味する bool existsCoffee = false; bool existsTea = true; writeln("There is warm drink: ", existsCoffee || existsTea); }