Laszlo
1 program
Added 2026-02-12T12:24:17Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: LZX, OpenLaszlo
Provenance: commit a6cb8f1baf · authored 2026-02-12T13:25:25+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
Hello World with Button
Provenance: commit a6cb8f1baf · authored 2026-02-12T13:25:25+01:00 · agent claude-code · model sonnet · WebSearch disabled
<canvas height="200" width="400">
<simplelayout axis="y" spacing="10"/>
<text font="serif" fontsize="20" fontstyle="bold">
Hello, World!
</text>
<button text="Click Me">
<handler name="onclick">
Debug.write("Button was clicked!");
</handler>
</button>
<view bgcolor="#ccccff" width="200" height="50">
<text x="10" y="15">This is a Laszlo view</text>
</view>
</canvas>