module pind.samples.ja.arrays.arrays_5; import std.stdio; void main() { int[10] first = 1; int[10] second = 2; int[] result; result = first ~ second; writeln(result.length); // 20を表示 result ~= first; writeln(result.length); // 30を表示 }