fork download
  1. -- your code goes here
  2. local data_struct = {
  3. wood = "default:wood",
  4. stone = "default:stone",
  5. steel = "default:steel_ingot"
  6. }
  7. for k, v in pairs(data_struct) do
  8. if not k == "default:wood" then
  9. -- Do stuff
  10. end
  11. end
Success #stdin #stdout 0s 5408KB
stdin
Standard input is empty
stdout
Standard output is empty