Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local item = {}
- item["24:1"] = {1,3}
- item["24:2"] = {2,4}
- print(item["24:1"][1])
- for k,v in pairs(item) do
- term.write(k .. " = ")
- for m,n in pairs(item[k]) do
- term.write(item[k][m] .. ", ")
- end
- print("")
- end
Advertisement
Add Comment
Please, Sign In to add comment