123456789101112131415161718 |
- using System;
- namespace csharp_sccd_compiler
- {
- public class Constants
- {
- /// <summary>
- /// Reserved keywords.
- /// </summary>
- public static string[] Reserved = new string[]{};
- public static string INSTATE_SEQ = "INSTATE";
- public static string SELF_REFERENCE_SEQ = "SELF";
- }
- }
|