⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 groupnames.cs

📁 编译原理语法分析和词法分析综合实验: 源程序、可执行程序、测试程序文件、程序运行说明文件、实验报告。
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Lane.Compiler.WordAnalyser.Core
{
    internal class GroupNames
    {
        public const string Keyword = "keywords";
        public const string Commet = "commet";
        public const string String = "string";
        public const string Number = "num";
        public const string Operator = "operator";
        public const string Type = "type";
        public const string ID = "id";
        
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -