Hi
.mod
range r=1..3;
int ar[r][1..2]=…;
tuple t
{
int a;
int b;
}{t} s={
| i in r}; execute
{
writeln(s);
}
.dat
ar=[[1,2],[2,3][2,4]];
gives
{<1 2> <2 3> <2 4>}
regards
NB: Many how to at https://www.linkedin.com/pulse/how-opl-alex-fleischer/