hello want to know how are associative arrays passed as return values
code:
function abc()
begin
int value[string][string];
value = def();
end
function int def()
begin
int new_value[string][string];
//logic to populate the array
return new_value;
end
I am seeing the following error: The type of target is int. While, the type of source is int$[string][string].
How to handle this and pass the assosciative array seamlessly?