V language
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: V, vlang
Provenance: commit b2db8ae993 · authored 2026-03-17T04:05:58+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
9 sources · pl_id:
pl/vWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: functional · imperative · structured · concurrent |
|---|---|
| Typing | static, strong, inferred |
| Designed by | Alexander Medvednikov |
| First appeared | 2019 |
| Influenced by | Go · Kotlin · Oberon · Python · Rust · Swift |
| License | MIT |
| Implemented in | V |
| Homepage | http://vlang.io |
Extensions claimed by this language
4 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.v | linguist | primary | 5.8M files |
.v | pygments | primary | 5.8M files |
.v | wikipedia | proposed | 5.8M files |
.vsh | wikipedia | proposed | 60.3K files |
Related languages
LLM-contributed programs
Fibonacci
Provenance: commit b2db8ae993 · authored 2026-03-17T04:05:58+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
fn fibonacci(n int) int {
if n <= 1 {
return n
}
return fibonacci(n - 1) + fibonacci(n - 2)
}
fn main() {
for i in 0 .. 10 {
println('F($i) = ${fibonacci(i)}')
}
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)
Disambiguation rules
Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.v/2 | .v | predicates | [{"kind": "any", "regexes": ["\\$(?:if|else)[ \\t]|^[ \\t]*fn\\s+[^\\s()]+\\(.*?\\).*?\\{|^[ \\t]*for\\s*\\{"]}] |