Initial label expected

You have omitted a label that it is required. Insert the required label at the start of your code.

Example:

Mandelbrot{
  z = 0
  ...

should become

Mandelbrot {
init:  ; label inserted here
  z = 0
  ...

Note: No formula types currently supported by Ultra Fractal require a starting label.

See Also
Errors