github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/build0.gno (about)

     1  // A test program
     2  
     3  //go:build ((darwin && linux) || !arm) && (go1.12 || !go1.13)
     4  
     5  package main
     6  
     7  func main() {
     8  	println("hello world")
     9  }
    10  
    11  // Output:
    12  // hello world