1package helloworld 2 3var counter int 4 5func Increment() { 6 counter++ 7} 8 9func GetCounter() int { 10 return counter 11} 12 13func Hello() string { 14 return "Hello from Gno!" 15}