RosettaCodeData/Task/Singleton/Go/singleton-5.go

13 lines
133 B
Go
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
package red
import (
"log"
"single"
)
func SetColor() {
log.Println("trying to set red")
single.SetColor("red")
}