Search Apps Documentation Source Content File Folder Download Copy Actions Download

z1_filetest.gno

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