In Perk, arrays are assignable. It is possible to write this code: ``` let a : [int] = [1,2,3]; let b := a; ``` However, in C this is not possible. We need to find a way to deal with this.
In Perk, arrays are assignable. It is possible to write this code:
However, in C this is not possible. We need to find a way to deal with this.