mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
feat(language): add code v (Dlurak) (#4957)
* Add the V programming language * Change from `code_swift` to `code_V` * Add way more words All keywords, all types and some built in functions are now included
This commit is contained in:
parent
b0f365e453
commit
b402230a24
3 changed files with 76 additions and 1 deletions
|
@ -547,7 +547,8 @@
|
|||
"code_zig",
|
||||
"code_gdscript",
|
||||
"code_gdscript_2",
|
||||
"code_assembly"
|
||||
"code_assembly",
|
||||
"code_v"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
|
@ -317,4 +317,5 @@
|
|||
,"code_gdscript"
|
||||
,"code_gdscript_2"
|
||||
,"code_assembly"
|
||||
,"code_v"
|
||||
]
|
||||
|
|
73
frontend/static/languages/code_v.json
Normal file
73
frontend/static/languages/code_v.json
Normal file
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
"name": "code_v",
|
||||
"noLazyMode": true,
|
||||
"words": [
|
||||
"as",
|
||||
"asm",
|
||||
"assert",
|
||||
"atomic",
|
||||
"break",
|
||||
"const",
|
||||
"continue",
|
||||
"defer",
|
||||
"else",
|
||||
"enum",
|
||||
"false",
|
||||
"fn",
|
||||
"for",
|
||||
"go",
|
||||
"goto",
|
||||
"if",
|
||||
"import",
|
||||
"in",
|
||||
"interface",
|
||||
"is",
|
||||
"isreftype",
|
||||
"lock",
|
||||
"match",
|
||||
"module",
|
||||
"mut",
|
||||
"none",
|
||||
"or",
|
||||
"pub",
|
||||
"return",
|
||||
"rlock",
|
||||
"select",
|
||||
"shared",
|
||||
"sizeof",
|
||||
"spawn",
|
||||
"static",
|
||||
"struct",
|
||||
"true",
|
||||
"type",
|
||||
"typeof",
|
||||
"union",
|
||||
"unsafe",
|
||||
"volatile",
|
||||
"__global",
|
||||
"__offsetof",
|
||||
|
||||
"print",
|
||||
"println",
|
||||
|
||||
"main",
|
||||
"panic",
|
||||
"exit",
|
||||
|
||||
"bool",
|
||||
"i8",
|
||||
"i16",
|
||||
"int",
|
||||
"i64",
|
||||
"u8",
|
||||
"u16",
|
||||
"u32",
|
||||
"u64",
|
||||
"f32",
|
||||
"f64",
|
||||
"string",
|
||||
"rune",
|
||||
"voidptr",
|
||||
"any"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue