groupnames.cs
来自「编译原理语法分析和词法分析综合实验: 源程序、可执行程序、测试程序文件、程序运行」· CS 代码 · 共 19 行
CS
19 行
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 + =
减小字号Ctrl + -
显示快捷键?