blob: 9921f2a6b368ff789ab7c03206e67e6724559ef3 [file] [log] [blame]
import std.stdio;
void main() {
double[] stuff = [1.,2.,3.,4.,5.];
float[] otherStuff;
otherStuff ~= stuff;
writeln(otherStuff);
}