| 4 | "//Auto type tests\r\n\ |
| 5 | import std.math;\r\n\ |
| 6 | float lengthSqr(float3 ref f){ return f.x*f.x+f.y*f.y+f.z*f.z; }\r\n\ |
| 7 | float[10] tenArr(float n){ float[10] arr; for(int i = 0; i < 10; i++) arr[i] = n; return arr; }\r\n\ |
| 8 | auto b = 15;\r\n\ |
| 9 | auto c = 2*2.0;\r\n\ |
| 10 | float3 m;\r\n\ |