module pind.samples.ja.variables.variables_2; import std.stdio; void main() { int studentCount; writeln("There are ", studentCount, " students."); // 変数studentCountに値200を代入する: studentCount = 200; writeln("There are now ", studentCount, " students."); }