Advertisement
actuallykane

Snippet example

Jan 12th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.10 KB | None | 0 0
  1. function returnIndexesInTable(t)
  2.     local i = 0;
  3.     for _,v in pairs(t)do
  4.         i = i + 1
  5.     end
  6.     return i;
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement