LZX

1 program Added 2026-03-05T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: OpenLaszlo, Laszlo XML
Provenance: commit 7adc395b8b · authored 2026-03-05T18:17:09+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)
LLM (this repo) · 1

Related languages

Laszlo (0.74)OpenLaszlo (0.60)OpenABL (0.15)OpenLisp (0.14)OpenCL C (0.14)

LLM-contributed programs

Hello World with Button and Sum

Provenance: commit 7adc395b8b · authored 2026-03-05T18:17:09+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.lzx · added: 2026-03-05T12:00:00Z
<canvas title="Hello, World" width="400" height="300">
  <text name="greeting" x="50" y="80" fontsize="18">Hello, World!</text>
  <button text="Greet Again" x="50" y="120">
    <handler name="onclick">
      var msg = "Hello from OpenLaszlo!";
      greeting.setAttribute("text", msg);
      Debug.write(msg);
    </handler>
  </button>
  <script>
    var result = 0;
    for (var i = 1; i <= 10; i++) {
      result += i;
    }
    Debug.write("Sum 1..10 = " + result);
  </script>
</canvas>

Contribute — propose a file extension

Tell us where to find evidence about LZX (mapped to pl/lzx). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/LZX/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← lyx-editor LZ∞ →