Ejemplo n.º 1
0
func main() {
	pic.Show(Pic)
}
Ejemplo n.º 2
0
func main() {
	fmt.Println("Hellow!!! I like Go's install so far!  Very straitforward!")
	pic.Show(gotour.Pic)
}
Ejemplo n.º 3
0
func main() {
	// Note that Show expects a _function itself_ to be passed in, NOT the result of one
	// (looking at the source code, it calls the func with x=256, y=256)
	pic.Show(Pic)
}
Ejemplo n.º 4
0
func main() {
	// Show() accepts a function name
	pic.Show(Pic)
}
Ejemplo n.º 5
0
func main() {
	// pic.Show(Pic)
	pic.Show(Pic2)
}
Ejemplo n.º 6
0
func main() {
	//fmt.Println(Pic(3,4))
	pic.Show(Pic)
}
Ejemplo n.º 7
0
func main() {
	pic.Show(Pic(power))
}
Ejemplo n.º 8
0
func main() {
	fmt.Println(Pic(3, 2))
	pic.Show(Pic(3, 2))
}