Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

counter.gno

0.16 Kb · 12 lines
 1package counter
 2
 3var count int
 4
 5func Increment() int {
 6	count++
 7	return count
 8}
 9
10func Render(path string) string {
11	return "Counter value: " + string(count)
12}