View Single Post
03-17-12, 03:41 AM   #11
Animor
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Mar 2011
Posts: 136
Then why in the wow programming book they wrote that
Code:
table.insert(tbl, "new element")
is better than
Code:
tbl[#tbl + 1] = "new element"
They wrote about the second method:
This is a really tedious and error-prone way to do something relatively simple.
  Reply With Quote