BASIC-360
1 program
Added 2026-02-10T19:58:30.888308Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: IBM BASIC-360
Provenance: commit 5244aad79a · authored 2026-02-10T20:59:58+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
Fibonacci Sequence
Provenance: commit 5244aad79a · authored 2026-02-10T20:59:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 REM FIBONACCI SEQUENCE GENERATOR
20 LET A = 0
30 LET B = 1
40 PRINT A
50 PRINT B
60 FOR I = 1 TO 10
70 LET C = A + B
80 PRINT C
90 LET A = B
100 LET B = C
110 NEXT I
120 END