Val
1 program
Added 2026-02-10T11:12:49Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b1c0d7cf75 · authored 2026-02-10T12:14:36+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/valRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit b1c0d7cf75 · authored 2026-02-10T12:14:36+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Fibonacci sequence generator
public fun main() {
var a = 0
var b = 1
print(a)
print(b)
for _ in 1 ... 10 {
let temp = a + b
a = b
b = temp
print(temp)
}
}
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.)