13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
![]() |
export class CSharpLanguage
|
||
|
{
|
||
|
public static readonly token ="c#";
|
||
|
|
||
|
public static readonly keywords:string[] =
|
||
|
[
|
||
|
"var","new","void","short","long","uint",
|
||
|
"float","int","byte","bool","double","string",
|
||
|
"using"
|
||
|
]
|
||
|
|
||
|
|
||
|
}
|