An example of behaviour pattern with a dummy server
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

14 righe
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