Skip to content

Instantly share code, notes, and snippets.

@kevinlebrun
Forked from arkein/singleton.go
Last active August 29, 2015 14:13
Show Gist options
  • Save kevinlebrun/fdb2f34c5f0ebeeb88b9 to your computer and use it in GitHub Desktop.
Save kevinlebrun/fdb2f34c5f0ebeeb88b9 to your computer and use it in GitHub Desktop.
package singleton
var Instance *_Singleton
type _Singleton struct {
SharedResource int
}
func _Load() {
Instance = &_Singleton{SharedResource: 1}
}
func init() {
_Load()
}
package main
import (
"fmt"
"singleton"
)
func main() {
fmt.Println(singleton.Instance.SharedResource)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment