How To Compile the POSTaL translator
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

in the command console execute the following command:

> make

Having compiled the source code, run the unit tests and the examples to verify the translator is 
properly functioning.

How to run the unit tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To run the unit tests type:

> ./unit_tests.sh

To run the examples type:

> ./examples.sh

To run an individual .postal program, type:

> ./runpostal.sh <filename>.postal

Example:

open.postal example opens this README file, taggs the contents of the file and outputs the tagged
contents out to the standard console.

> ./runpostal.sh examples/open.postal

NOTE: be prepared to experience a few seconds' delays when running the examples because the POSTaL translator 
needs to load the HMM model for it to perform the part-of-speech tagging.


