module pind.samples.ja.functions_more.functions_more_7; int[] makeNumbers() pure { int[] result; result ~= 42; return result; } void main() { immutable array = makeNumbers(); }