An example of behaviour pattern with a dummy server
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

14 linhas
356 B

  1. function run_event(name)
  2. print("run " .. name)
  3. if(name == "archivist") then
  4. Business.fetch_add(10)
  5. elseif(name == "reset") then
  6. Business.fetch_add(-Business.fetch_add(0))
  7. else
  8. Business.fetch_add(1)
  9. end
  10. end
  11. function display_event(name)
  12. print("display " .. name)
  13. return tostring(Business.fetch_add(0))
  14. end