$ go build -ldflags -s
package main
import (
"fmt"
_ "github.com/veandco/go-sdl2/sdl"
)
func init() {
fmt.Println("init")
}
func main() {
fmt.Println("Hello, world")
}
$ go build -ldflags -s
package main
import (
"fmt"
_ "github.com/veandco/go-sdl2/sdl"
)
func init() {
fmt.Println("init")
}
func main() {
fmt.Println("Hello, world")
}