Add Nim language (code) (#3810) j-james

This commit is contained in:
JJ 2022-12-08 05:50:13 -08:00 committed by GitHub
parent bdd6ce0ffa
commit b8ad75b0b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8585 additions and 0 deletions

View file

@ -407,6 +407,7 @@
"code_julia",
"code_haskell",
"code_html",
"code_nim",
"code_pascal",
"code_java",
"code_kotlin",

View file

@ -230,6 +230,7 @@
,"code_julia"
,"code_haskell"
,"code_html"
,"code_nim"
,"code_pascal"
,"code_java"
,"code_kotlin"

View file

@ -0,0 +1,106 @@
{
"name": "code_nim",
"leftToRight": true,
"noLazyMode": true,
"words": [
"addr",
"and",
"as",
"asm",
"bind",
"block",
"break",
"case",
"cast",
"concept",
"const",
"continue",
"converter",
"defer",
"discard",
"distinct",
"div",
"do",
"elif",
"else",
"end",
"enum",
"except",
"export",
"finally",
"for",
"from",
"func",
"if",
"import",
"in",
"include",
"interface",
"is",
"isnot",
"iterator",
"let",
"macro",
"method",
"mixin",
"mod",
"nil",
"not",
"notin",
"object",
"of",
"or",
"out",
"proc",
"ptr",
"raise",
"ref",
"return",
"shl",
"shr",
"static",
"template",
"try",
"tuple",
"type",
"using",
"var",
"when",
"while",
"xor",
"yield",
"bool",
"int",
"char",
"string",
">",
"<",
">=",
"<=",
"=",
"==",
"+",
"-",
"*",
"/",
"^",
"~",
"&",
"!",
"$",
"%",
"?",
":",
"|",
".",
"..",
"..<",
"#",
"=>",
"->",
"~>",
"+=",
"-=",
"&="
]
}

File diff suppressed because one or more lines are too long