mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-22 12:46:03 +03:00
14 lines
134 B
Go
14 lines
134 B
Go
package main
|
|
|
|
import (
|
|
"github.com/davecgh/go-spew/spew"
|
|
)
|
|
|
|
func init() {
|
|
spew.Dump("inited")
|
|
}
|
|
|
|
func main() {
|
|
spew.Dump("Test")
|
|
}
|