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