//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\
// PLEASE DO NOT EDIT WITHOUT THE EXPLICIT CONSENT OF THE AUTHOR! \\
//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\
/**
* This test the class Ilog.Language.Tools.CC.
*
* @version Last modified on Sun May 15 20:45:02 2005 by hak
* @author Hassan Aït-Kaci
* @copyright © 2000 ILOG, S.A.
*/
using System;
using Ilog.Language.Tools;
public class CCTest
{
public static void Main ()
{
/** End of file */
Console.WriteLine("EOF = {0}; (end of file)",CC.EOF);
/** End of input */
Console.WriteLine("EOI = {0}; (end of input)",CC.EOI);
/** Start of input */
Console.WriteLine("SOI = {0}; (start of input)",CC.SOI);
/** Word */
Console.WriteLine("WRD = {0}; (word)",CC.WRD);
/** Number */
Console.WriteLine("NUM = {0}; (number)",CC.NUM);
/** Nothing */
Console.WriteLine("NTG = {0}; (nothing)",CC.NTG);
/** Special */
Console.WriteLine("SPL = {0}; (special)",CC.SPL);
/** End of line */
Console.WriteLine("EOL = {0}; (end of line)",CC.EOL);
/** Tab */
Console.WriteLine("TAB = {0}; (tab)",CC.TAB);
/** Carriage return */
Console.WriteLine("CRT = {0}; (carriage return)",CC.CRT);
/** Backspace */
Console.WriteLine("BSP = {0}; (backspace)",CC.BSP);
/** Form feed */
Console.WriteLine("FFD = {0}; (form feed)",CC.FFD);
/** Backslash */
Console.WriteLine("BSL = {0}; (backslash)",CC.BSL);
/** Single quote */
Console.WriteLine("SQT = {0}; (single quote)",CC.SQT);
/** Double quote */
Console.WriteLine("DQT = {0}; (double quote)",CC.DQT);
/** Back quote */
Console.WriteLine("BQT = {0}; (back quote)",CC.BQT);
/** Beep */
Console.WriteLine("BIP = {0}; (beep)",CC.BIP);
}
}