in virtualsue/asterisk.go [10:15]
func mandelbrot(a complex128) (z complex128) { for i := 0; i < 50; i++ { z = z*z + a } return }