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/xumlRelated languages
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
// 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.)