[ create a new paste ] login | about

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

nepta - Lua, pasted on Apr 7:
1
2
3
4
s = {'a','b','d','e','f'}
print(table.concat(s,","))
table.insert(s,3,'c')
print(table.concat(s,","))


Output:
1
2
a,b,d,e,f
a,b,c,d,e,f


Create a new paste based on this one


Comments: