Extended Color BASIC
1 program
Added 2026-02-12T19:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: ECB, Color BASIC 2.0
Provenance: commit 47c7620860 · authored 2026-02-12T13:57:42+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
Graphics Demo with Line and Circle
Provenance: commit 47c7620860 · authored 2026-02-12T13:57:42+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 REM Extended Color BASIC Graphics Demo
20 CLS
30 SCREEN 1,1
40 PMODE 3,1
50 PCLS
60 FOR I=0 TO 100 STEP 5
70 LINE (0,I)-(191,I),PRESET
80 LINE (I,0)-(I,191),PRESET
90 NEXT I
100 FOR R=10 TO 80 STEP 10
110 CIRCLE (95,95),R
120 NEXT R
130 FOR I=1 TO 500
140 NEXT I
150 PCLEAR 1
160 END