xtUML

1 program Added 2026-03-17T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Executable Translatable UML, Executable UML, xUML
Provenance: commit 061e21daa8 · authored 2026-03-17T04:44:32+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/xuml
LLM (this repo) · 1Pldb

Related languages

IT (0.14)ALTRAN (0.14)COMTRAN (0.13)MELT (0.13)Transact-SQL (0.12)

LLM-contributed programs

Fibonacci

Provenance: commit 061e21daa8 · authored 2026-03-17T04:44:32+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.oal · added: 2026-03-17T10:00:00Z
// Fibonacci sequence in xtUML Object Action Language (OAL)
// Demonstrates variables, loops, and logging in BridgePoint xtUML

assign a = 0;
assign b = 1;
assign limit = 10;

LOG::LogInfo(message: "Fibonacci sequence:");
LOG::LogInfo(message: GS_VALUE::integer_to_string(val: a));
LOG::LogInfo(message: GS_VALUE::integer_to_string(val: b));

assign i = 2;
while (i < limit)
  assign temp = a + b;
  assign a = b;
  assign b = temp;
  LOG::LogInfo(message: GS_VALUE::integer_to_string(val: b));
  assign i = i + 1;
end while;

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

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