Error 02 Colon (:) was Expected pp 321 Source: Compiler Cause: Colon missing after VAR or FUNCTION declaration. Remedy: Check declaration and add colon. Example: Function DUMMY Real; { Wrong } VAR IntVar Integer ; Begin End ; Function DUMMY : Real; { Correct } VAR IntVar : Integer ; Begin End ;