module pind.samples.ja.arithmetic.arithmetic_1; import std.stdio; void main() { int number = 10; ++number; writeln("New value: ", number); }