[ create a new paste ] login | about

Link: http://codepad.org/dd5AWIeT    [ raw code | output | fork ]

Lua, pasted on Jul 1:
1
2
3
4
5
sample = {"hello", "felicia", "day"}
print(sample[1])
table.remove(sample,1)
table.remove(sample,1)
print(sample[1])


Output:
1
2
hello
day


Create a new paste based on this one


Comments: