Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | Last revisionBoth sides next revision | ||
language:migrate [2022/05/13 15:22] – [Parameters] rajit | language:migrate [2022/05/13 15:22] – [Array expressions] rajit | ||
---|---|---|---|
Line 46: | Line 46: | ||
In the previous version of ACT, one could do the following: | In the previous version of ACT, one could do the following: | ||
- | < | + | < |
bool x[2][2]; | bool x[2][2]; | ||
bool y[2]; | bool y[2]; | ||
Line 59: | Line 59: | ||
</ | </ | ||
Instead, you can get the same effect by saying: | Instead, you can get the same effect by saying: | ||
- | < | + | < |
x[0][0..1] = y; | x[0][0..1] = y; | ||
</ | </ |