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

ambassadorweek.gno

0.22 Kb · 14 lines
 1package ambassadorweek
 2
 3import "strconv"
 4
 5var count int
 6
 7func Increment(_ realm) int {
 8	count++
 9	return count
10}
11
12func Render(path string) string {
13	return "# Sapphire Ambassador Smoke Test\n\nCount: " + strconv.Itoa(count)
14}