aboutsummaryrefslogtreecommitdiff
path: root/t.lua
blob: 56aa0f7870d7ae4a0d2218c4fcf5b65fbc9c32f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
require "llib"
local a = llib.array

local test = {5,"meow",3,2,2,1,8}
test = a.reverse(test)

for i=1,#test do
  print(test[i])
end

print(a.index(test,"meow"))