Compiler: concactenation of expressions
Created by: vaussard
The following operation should be possible, using temporary variables:
var i = 0
var j = 1
var k[] = [i, j]
which should unfold to
temp[0] = i
temp[1] = j
var k = temp
This could be generalized to any expressions, like vectors or even result of mathematical operations.