Preprocessor Operators

Operators that are executed by the preprocessor

These operators control how text is interpreted by the preprocessor.

KeyPgOpPpStringizeOperator # (Stringize)
	Returns a text operand converted to a KeyPgStringString literal.
KeyPgOpPpConcatOperator ## (Concatenation)
	Concatenates two text operands.
KeyPgOpPpEscapeOperator ! (Escaped String Literal)
	Indicates string literal immediately following must be processed for 
	escape sequences.
KeyPgOpPpNoescapeOperator $ (Non-Escaped String Literal)
	Indicates string literal immediately following must not be processed for 
	escape sequences.

