On Sat, Mar 17, 2012 at 11:37:15PM -0500, Caligo wrote: > void main() { > float[4] a1 = [1, 2, 3, 4]; > float[4] a2 = [3, 2, 8, 2]; > auto r = a1 + a2; > } > > When are they going to be implemented?
Are you trying to concatenate the arrays or sum their elements? Here's how to concatenate: auto r = a1 ~ a2; Here's how to sum: auto r = a1[] + a2[]; T -- Klein bottle for rent ... inquire within. -- Stephen Mulraney