func main() { one.Set(1) fmt.Println(one.Get()) two.Set(2) two.Print() fmt.Println(one.Get()) one.Set(1) two.Print() }
func Set(v int) { one.Set(v) }