Limn
1 program
Added 2026-02-11T19:37:52.914844Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a0df60a350 · authored 2026-02-11T20:38:37+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Vector Addition
Provenance: commit a0df60a350 · authored 2026-02-11T20:38:37+01:00 · agent claude-code · model sonnet · WebSearch disabled
fun vadd(a : vec4f, b : vec4f) : vec4f {
return a + b
}
fun main() {
let v1 = vec4f(1.0, 2.0, 3.0, 4.0)
let v2 = vec4f(5.0, 6.0, 7.0, 8.0)
let result = vadd(v1, v2)
print(result)
}