BASIC-128
1 program
Added 2026-02-11T09:15:03Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Commodore BASIC 7.0, BASIC 7.0
Provenance: commit cf00616bee · authored 2026-02-11T13:26:04+01:00 · agent claude-code-recovery · 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
Provenance: commit cf00616bee · authored 2026-02-11T13:26:04+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
10 REM COMMODORE 128 GRAPHICS DEMO
20 GRAPHIC 1,1
30 COLOR 0,1
40 FOR I = 0 TO 319 STEP 10
50 LINE I,0,319-I,199
60 NEXT I
70 FOR I = 0 TO 199 STEP 10
80 LINE 0,I,319,199-I
90 NEXT I
100 FOR R = 10 TO 100 STEP 10
110 CIRCLE 160,100,R
120 NEXT R
130 GETKEY A$
140 GRAPHIC 0