Viola
1 program
Added 2026-03-10T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: ViolaWWW
Provenance: commit c287e4e18b · authored 2026-03-10T19:49:43+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci
Provenance: commit c287e4e18b · authored 2026-03-10T19:49:43+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
/* Fibonacci sequence in Viola scripting language
Viola was a hypertext scripting language for the ViolaWWW browser,
one of the first graphical web browsers (early 1990s). */
func fib(n) {
if (n <= 0) {
return 0;
}
if (n == 1) {
return 1;
}
return fib(n - 1) + fib(n - 2);
}
var i;
i = 0;
while (i <= 10) {
print(fib(i));
i = i + 1;
}