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

13 lines
133 B
Go
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
package red
import (
"log"
"single"
)
func SetColor() {
log.Println("trying to set red")
single.SetColor("red")
}