Page should describe the generic structure of a FM program. Are these sections named in any way?

// Section 1: language specifier
%ffp

// Section 2: identification & control definition
title: "Hello world"

ctl[0]: STANDARD

// Section 3: handlers
OnFilterStart:
{
    Info("Hello world");
}

I believe this order of sections is mandatory, so we'd better document it :)