An example of behaviour pattern with a dummy server
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

15 行
356 B

function run_event(name)
print("run " .. name)
if(name == "archivist") then
Business.fetch_add(10)
elseif(name == "reset") then
Business.fetch_add(-Business.fetch_add(0))
else
Business.fetch_add(1)
end
end
function display_event(name)
print("display " .. name)
return tostring(Business.fetch_add(0))
end