z1_filetest.gno

0.16 Kb ยท 15 lines
 1package main
 2
 3import (
 4	"gno.land/r/demo/tests"
 5)
 6
 7func main() {
 8	println(tests.Counter())
 9	tests.IncCounter()
10	println(tests.Counter())
11}
12
13// Output:
14// 0
15// 1