module pind.samples.ja.variables.variables_1; import std.stdio; void main() { // 変数の定義; この定義は、 // studentCountの型がintであることを指定している: int studentCount; // 変数の名前はその値になる: writeln("There are ", studentCount, " students."); }