Occam to C++ Translator is software which translates an Occam source file into C++ source code file.
User could input a Occam source file into the software, the output shuold be a matched C++ file.
There are two separate processes for doing it : Lexer and Parser. Lexer part will separate the
Occam source file into tokens, and then make the tokens from each line into a linked list.
Pass the linked list to Parser after Lexer finish recognise each line. Parser part will translate
the linked list to C++ source code according to the C++ grammars.