agent-backend/contracts/AnnotationSample/AnnotationExample.yjs
2021-09-26 12:49:24 +08:00

20 lines
519 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@Access("verified")
@LogType("Arg", "IO")
@LogLocation("lo")
@Description("这是个使用注解的合约示例,只有一个方法")
contract AnnotationExample{
@LogType("Branch")
@Description("计算score之和参数示例: [{\"score\":20},{\"score\":20}]")
export function main(arg){
point = JSON.parse(arg);
var s = 0;
print(point[0].score);
print(point.length);
for (var i = 0; i < point.length; i++){
s += point[i].score / 1.0;
}
print("ss= " + s);
return s;
}
}