Oric BASIC
1 program
Added 2026-02-11T13:46:41Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Oric-1 BASIC, Oric Atmos BASIC
Provenance: commit af5ce07f94 · authored 2026-02-11T14:47:33+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 Circles and Lines
Provenance: commit af5ce07f94 · authored 2026-02-11T14:47:33+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 REM Oric BASIC Graphics Demo
20 PAPER 0: INK 7: CLS
30 FOR I = 0 TO 10
40 CIRCLE 20 + I * 10, 20 + I * 10, I * 5, I MOD 7 + 1
50 NEXT I
60 FOR X = 0 TO 200 STEP 10
70 DRAW X, 0, X, 100, 3
80 NEXT X
90 PRINT "Oric Graphics Demo"
100 END