HVML
1 program
Added 2026-03-06T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Hypertext Virtual Machine Language
Provenance: commit 94c537d1ac · authored 2026-03-06T10:48:10+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 Numbers
Provenance: commit 94c537d1ac · authored 2026-03-06T10:48:10+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
<!DOCTYPE hvml>
<hvml target="html" lang="en">
<head>
<title>Fibonacci Numbers</title>
</head>
<body>
<h1>Fibonacci Numbers</h1>
<ol>
<init as="fib" with=[0, 1] />
<iterate on $fib by "ADD: LT 10 BY 1">
<li>$?</li>
<init as="next" with=$DATA.arith('+', $fib[-2], $fib[-1]) />
<update on $fib to="append" with $next />
</iterate>
</ol>
</body>
</hvml>