github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/x/manfred_upgrade_patterns/upgrade_c/v1/v1.gno (about)

     1  package v1
     2  
     3  import "gno.land/r/x/manfred_upgrade_patterns/upgrade_c/root"
     4  
     5  func Inc() {
     6  	root.Inc()
     7  }
     8  
     9  func Get() int {
    10  	return root.Get() * 1
    11  }