Vlang
1 program
Added 2026-02-26T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: V, V language, The V Programming Language
Provenance: commit f64f97b965 · authored 2026-02-26T22:33:18+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/v-programming-languageWikipedia 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
1 claim. 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 | pygments | primary | 5.8M files |
Related languages
LLM-contributed programs
Fibonacci sequence
Provenance: commit f64f97b965 · authored 2026-02-26T22:33:18+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
fn fib(n int) int {
if n <= 1 {
return n
}
return fib(n - 1) + fib(n - 2)
}
fn main() {
for i in 0 .. 10 {
println('fib(${i}) = ${fib(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.)