Is there a way to make a global constant array? I've tried a couple options, like:
const thearray() = ("a", "b", "c")
const thearray = array("a", "b", "c")
But cannot seem to figure out a solution. Anyone know of a way?
Thanks.
Printable View
Is there a way to make a global constant array? I've tried a couple options, like:
const thearray() = ("a", "b", "c")
const thearray = array("a", "b", "c")
But cannot seem to figure out a solution. Anyone know of a way?
Thanks.
The Array() function would be your best bet, but it won't make it constant (the compiler will yell at you).