Search Apps Documentation Source Content File Folder Download Copy Actions Download

helloworld.gno

0.17 Kb · 15 lines
 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}