" Warning: Assignment to 'null' has no effect"
This warning message is displayed when a value is assigned to the built-in variable null.
" Warning: Label is never referenced by a goto statement"
This warning message is displayed when a label is declared but not referenced by a goto statement.
NOTE: This warning message is displayed even if the label has been used to mark a statement.
" Warning: Variable's size is zero"
This warning message is displayed when a variable is declared, but because of it's type is zero bytes long.
" Warning: Function return value does not exist"
This warning message is displayed when your program contains a function call, that the compiler is able
to determine, can not return a legal value given the function argument(s).
For example the following function call
succ(x);
will cause this warning message to be displayed, if x is a value whose type has only one value.
" Warning: Comparing signed and unsigned integral values"
This warning message is when signed and unsigned integral values are used in the same expression. In
this situation it can be difficult for the compiler to know the appropriate type for the expression.
" Warning: This program is too big for the demo version of Irie Pascal"
The demo version of Irie Pascal, is limited in the size of the program it can compile, and when the limit is
exceeded this warning message is displayed and the executable is not generated.
Displays a color choice dialog box that allows you to choose the text color used in the edit windows.
Displays a color choice dialog box that allows you to choose the background color used in the edit
windows.
Shows a sample of what your edit window color choices will look like.
Displays a color choice dialog box that allows you to choose the text color used for informational
mesages in the Message Window.
Displays a color choice dialog box that allows you to choose the background color used for information
messages in the Message Window.
Shows a sample of what your information message color choices will look like.
Displays a color choice dialog box that allows you to choose the text color used for warning mesages in
the Message Window.