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:
Dlurak 2024-01-29 12:39:07 +01:00 committed by GitHub
parent b0f365e453
commit b402230a24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 76 additions and 1 deletions

View file

@ -547,7 +547,8 @@
"code_zig",
"code_gdscript",
"code_gdscript_2",
"code_assembly"
"code_assembly",
"code_v"
]
}
]

View file

@ -317,4 +317,5 @@
,"code_gdscript"
,"code_gdscript_2"
,"code_assembly"
,"code_v"
]

View 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"
]
}