Hi,
I found a big problem to declare an array with composite type.
In my code, I would like to write
tuple PM
{
npm::Int64
nvm::String;
}
indexes=PM
push!(indexes,PM(1,“s”))
push!(indexes,PM(2,“s”))
push!(indexes,PM(1,“m”))
push!(indexes,PM(2,“m”))
How could I write ths declaration ?
int countPVX[indexes]; ???