Search Apps Documentation Source Content File Folder Download Copy Actions Download

arithmetic.gno

0.22 Kb · 11 lines
 1package arithmetic
 2
 3import counter "gno.land/p/g1hzlg063fqrq4gltql992ssjc0xzau89t5jp63w/audit/pcounter1780756752"
 4
 5var c = &counter.Counter{Value: 0}
 6
 7func Inc() {
 8	counter.Inc(c)
 9}
10
11func GetValue() int { return c.Value }