SCELBI BASIC
1 program
Added 2026-02-10T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: SCELBI-8B BASIC
Provenance: commit e3f2f6698a · authored 2026-02-10T21:21:15+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
Counting Program
Provenance: commit e3f2f6698a · authored 2026-02-10T21:21:15+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 REM COUNTING PROGRAM
20 LET A = 1
30 PRINT A
40 LET A = A + 1
50 IF A <= 10 THEN 30
60 PRINT "DONE"
70 END