PL/M-386
1 program
Added 2026-02-16T16:03:06Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 73da0ccaae · authored 2026-02-16T17:03:45+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 73da0ccaae · authored 2026-02-16T17:03:45+01:00 · agent claude-code · model sonnet · WebSearch disabled
/* Simple PL/M-386 Hello World Program */
HELLO: DO;
DECLARE STRING LITERALLY 'BYTE';
DECLARE MSG(14) STRING INITIAL (
'HELLO, WORLD!', 0DH);
/* Print the message */
CALL PRINT$STRING(@MSG);
END HELLO;