The second value is the number of timesteps used
The dynamic section is executed the number of times given in the timer section
binding MapA=a.map; # input map, completely filled with value 10 MapC=c.map; # output map areamap mask.map; timer 1 10 1; initial MapB=5*MapA; # MapB becomes 50 report MapC=MapB/10; # MapC becomes 5 dynamic MapB=MapB+MapC; MapD=MapB+1;