Search Apps Documentation Source Content File Folder Download Copy Actions Download

counter.gno

0.24 Kb · 21 lines
 1package counter
 2
 3import "strconv"
 4
 5type Counter struct {
 6	Value int
 7}
 8
 9func (c *Counter) Inc() {
10	c.Value++
11}
12
13var c Counter
14
15func Increment() {
16	c.Inc()
17}
18
19func Render(path string) string {
20	return "Compteur Samourai : " + strconv.Itoa(c.Value)
21}