mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-01-10 09:54:11 +00:00
14 lines
234 B
Plaintext
14 lines
234 B
Plaintext
|
contract CounterExample {
|
||
|
function onCreate() {
|
||
|
Global.count = 0;
|
||
|
}
|
||
|
|
||
|
export function click(ignored) {
|
||
|
Global.count++;
|
||
|
return Global.count;
|
||
|
}
|
||
|
|
||
|
export function getCount(ignored) {
|
||
|
return Global.count;
|
||
|
}
|
||
|
}
|