Comments

AROS uses some of the comments in the source to generate the documentation. Therefore it's neccessary to keep a certain format so the tools can find their information. Other comments are ignored but they should explain what you thought when you wrote the code. If you really can't think of an explanation, then don't write the code a second time like this:


\begin{example}
/* This adds 1 to t */
t ++;
\end{example}

What we think of is this:


\begin{example}
/* Go on with next element */
t ++;
\end{example}