Skip to content

Instantly share code, notes, and snippets.

@dictav
Created March 29, 2017 04:26
Show Gist options
  • Save dictav/a53dd00de6e4e22a85c50c909e82ed98 to your computer and use it in GitHub Desktop.
Save dictav/a53dd00de6e4e22a85c50c909e82ed98 to your computer and use it in GitHub Desktop.
$ 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")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment