Search Apps Documentation Source Content File Folder Download Copy Actions Download

pcounter.gno

0.08 Kb · 5 lines
1package pcounter
2
3type Counter struct{ Value int }
4
5func Inc(c *Counter) { c.Value++ }