Is there an easy way to load an array?
For example if I want to load something like "TESTING" into the array test do I have to enter it this way or is there an easier way like test = "TESTING"?
test[0] = "T"
test[1] = "E"
test[2] = "S"
test[3] = "T"
test[4] = "I"
test[5] = "N"
test[6] = "G"
Bookmarks