aboutsummaryrefslogtreecommitdiffhomepage
path: root/testdata/ldflags.go
blob: 94db0dcb128c12c468a268ec0e841ceda29e0160 (plain)
1
2
3
4
5
6
7
8
9
package main

// These globals can be changed using -ldflags="-X main.someGlobal=value".
// At the moment, only globals without an initializer can be replaced this way.
var someGlobal string

func main() {
	println("someGlobal:", someGlobal)
}