module pind.samples.ja.while_.while_1; import std.stdio; void main() { bool existsCookie = true; while (existsCookie) { writeln("Take cookie"); writeln("Eat cookie"); } }