github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/testdata/ldflags.go (about)

     1  package main
     2  
     3  // These globals can be changed using -ldflags="-X main.someGlobal=value".
     4  // At the moment, only globals without an initializer can be replaced this way.
     5  var someGlobal string
     6  
     7  func main() {
     8  	println("someGlobal:", someGlobal)
     9  }