sample.lua 249 B

12345678
  1. -- a simple config file that doesn't do any computation
  2. host = "localhost"
  3. port = 8080
  4. files = {"foo.txt", "bar.jpeg"}
  5. -- ... but maybe a little bit, just to show off what can be done
  6. for i = 1,3 do
  7. table.insert(files, "file_" .. i .. ".dat")
  8. end