UXL

1 program Added 2026-03-13T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: Rikulo UXL
Provenance: commit 67c1001d51 · authored 2026-03-13T07:09:39+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

Rigal (0.17)Uxntal (0.15)Cixl (0.12)Fexl (0.12)Haxl (0.12)

LLM-contributed programs

Hello World with Random Messages

Provenance: commit 67c1001d51 · authored 2026-03-13T07:09:39+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.uxl.xml · license: Apache-2.0 · added: 2026-03-13T12:00:00Z
<?dart
import "dart:math";
import "package:rikulo_ui/view.dart";
import "package:rikulo_uxl/uxl.dart";

void main() {
  //Hello()[0]..addToDocument();
  new View()..addChild(Hello()[0])..addToDocument();
}

class HelloControl extends Control {
  String message = messages[0];

  void change(e) {
    message = nextMessage();
    render(); //re-render UI
  }
}

String nextMessage() => messages[random.nextInt(4)];
final Random random = new Random();
const messages = const ['great', 'wicked cool', 'sweet', 'fantastic'];  
?>

<Template name="Hello">
  <Panel layout="type:linear; orient: vertical; spacing: 8"
    profile="location: center center; width: 130; height: 80"
    control="ctrl: HelloControl">
    UXL is ${ctrl.message}!
    <Button text="Change" on.click="change"/>
  </Panel>
</Template>

Contribute — propose a file extension

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