Changes by last author:

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

<code>

// Section 1: language specifier

%ffp

// Section 2: identification & control definition

title: "Hello world"

ctl[0]: STANDARD

// Section 3: handlers

OnFilterStart:

{

Info("Hello world");

}

</code>

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

----