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)
LLM (this repo) · 1

Related languages

Laszlo (0.80)LZX (0.60)OpenLogo (0.23)OpenLisp (0.22)OpenABL (0.17)

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
code.lzx · license: Public Domain · added: 2026-02-28T10:15:00Z
<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>

Contribute — propose a file extension

Tell us where to find evidence about OpenLaszlo (mapped to pl/openlaszlo). 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/OpenLaszlo/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← opengraph OpenLisp →