//The Mandelbrot Set is an example of a "fractal". //Using SiMPLE it is very easy to generate Mandelbrot images. real=-2.2; imag=-1.2 inc=0.005; limit=65 Do y=0,479 r=real Do x=0,639 color=limit-mandelbrot(r, imag, limit) point color (color); plot (x, y) r=r+inc Loop x imag=imag+inc Loop y