data.lua 169 B

12345678910111213
  1. title = "This is the title"
  2. function combine(a, b)
  3. return a .. "&" .. b
  4. end
  5. function times(a, b)
  6. return tostring(a * b)
  7. end
  8. function moose()
  9. return "MOOSE"
  10. end