MENTOR
1 program
Added 2026-02-16T17:56:32Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1d3a60aee6 · authored 2026-02-16T18:58:10+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
Simple Graphics Example
Provenance: commit 1d3a60aee6 · authored 2026-02-16T18:58:10+01:00 · agent claude-code · model sonnet · WebSearch disabled
PROGRAM SIMPLE_GRAPHICS;
BEGIN
-- Initialize graphics display
INIT_DISPLAY(640, 480);
-- Draw a simple rectangle
DRAW_RECTANGLE(100, 100, 300, 200);
-- Draw a line
DRAW_LINE(50, 50, 400, 400);
-- Display text
DRAW_TEXT(150, 250, "MENTOR Graphics");
-- Wait for user input
WAIT_KEY;
-- Close display
CLOSE_DISPLAY;
END;