SVL
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Scientific Vector Language
Provenance: commit 9bbdb312a8 · authored 2026-03-05T17:46:59+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
4 sources · pl_id:
pl/svlWikipedia 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 |
|---|---|
| Typing | dynamic |
| First appeared | 1994 |
| License | Proprietary software |
| Homepage | http://www.chemcomp.com/ |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 9bbdb312a8 · authored 2026-03-05T17:46:59+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
// Fibonacci sequence in SVL (Scientific Vector Language)
// Demonstrates recursive functions and iteration in MOE's built-in language
local function fib [n]
if n <= 1 then
return n;
endif
return fib [n - 1] + fib [n - 2];
endfunction
local i;
for i = 0, 9 loop
write twrite ['fib({}) = {}\n', i, fib [i]];
endloop
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.)