OpenLaszlo
1 program
Added 2026-02-28T10:15:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: LZX, Laszlo
Provenance: commit e9194972e6 · authored 2026-02-28T17:12:45+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 Calculator
Provenance: commit e9194972e6 · authored 2026-02-28T17:12:45+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
<canvas>
<script>
function fibonacci(n) {
if (n <= 1) return n;
var a = 0, b = 1;
for (var i = 2; i <= n; i++) {
var temp = a + b;
a = b;
b = temp;
}
return b;
}
</script>
<window title="Fibonacci Calculator" width="300" height="200">
<simplelayout axis="y" spacing="10"/>
<edittext id="input" width="200" text="10"/>
<button onclick="output.setAttribute('text', 'fib(' + input.text + ') = ' + fibonacci(Number(input.text)))">
Calculate
</button>
<text id="output">Result appears here</text>
</window>
</canvas>