VIC-20 BASIC
1 program
Added 2026-02-11T09:55:36Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: VIC BASIC, Commodore VIC-20 BASIC
Provenance: commit 3b31d175cd · authored 2026-02-11T13:26:50+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
Character Set Display
Provenance: commit 3b31d175cd · authored 2026-02-11T13:26:50+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
10 PRINT CHR$(147)
20 PRINT "VIC-20 CHARACTER PATTERN"
30 PRINT
40 FOR I=0 TO 15
50 FOR J=0 TO 15
60 A=I*16+J
70 PRINT CHR$(A);
80 NEXT J
90 PRINT
100 NEXT I
110 PRINT
120 PRINT "PRESS ANY KEY"
130 GET A$:IF A$="" THEN 130
140 END