The Errors.uc file sets the text for error messages.  Should you wish to
translate these error messages to a different language, or to append your
own list of error messages, you can simply modify the file with any text
editor.


==============================================================================

uCalc Prefix "uCalc Error "

Prefix is a useful uCalc Interpreter command that you'll find many times
elsewhere.  It simply adds (implicitly) the text that you specify, at the
beginning of every subsequent line, so that you don't have to type it each
time explicitly.  So the line that says:

uc_Syntax_Error "Syntax Error"

is equivalent to:

uCalc Error uc_Syntax_Error "Syntax Error"

The word Error is itself an interpreter command.  Its first parameter is a
numeric value.  uc_Syntax_Error, and words that start with uc_Err_ in
subsequent lines are constants previously defined in ucalcpb.bas.  They hold
numeric values corresponding to uCalc errors.  The quoted text at the end is
the message that will correspond to a given error message.


==============================================================================

uCalc Prefix ""

This line simply removes the prefix.
