I have a const char ** which is going to be of varying lengths, but I want to create a lua array from the const char **.
My const char ** is something like this
arg[0]="Red"
arg[1]="Purple"
arg[2]="Yellow"
I need to convert this array to a global table in Lua, but I'm not sure about how to go about this as I'm not very good at manipulating Lua.