XCOM
1 program
Added 2026-02-13T10:33:57Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: XCOMpiler
Provenance: commit 806be23f3b · authored 2026-02-13T11:34:26+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World
Provenance: commit 806be23f3b · authored 2026-02-13T11:34:26+01:00 · agent claude-code · model sonnet · WebSearch disabled
/* XCOM Hello World Program */
HELLO: PROCEDURE;
DCL MSG CHAR(20) INIT('HELLO, WORLD!');
CALL PUT_LINE(MSG);
RETURN;
END HELLO;