direct array create and set
# support-forum
c
i have this
Copy code
new msgs[][] = {
    {"idiom 1- msg 1"},
    {"idiom 1- msg 2"},
    {"idiom 1- msg 3"},
};
is it possible to declare and define one more list of msgs direct list this:
Copy code
new msgs[][][] = {
    {"idiom 1- msg 1"},
    {"idiom 1- msg 2"},
    {"idiom 1- msg 3"},
}, {
  {"idiom 2- msg 1"},
  {"idiom 2- msg 2"},
  {"idiom 2- msg 3"},
}, {
  {"idiom 3- msg 1"},
  {"idiom 3- msg 2"},
  {"idiom 3- msg 3"},
};
???
w
No, I don't think that you can create 4/5 levels deep arrays
However, what problem are you trying to solve? I think it is worth thinking differently on how the code is made, instead of nesting things so deep 😅