SBASIC
1 program
Added 2026-02-11T00:00:00Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Data General SBASIC
Provenance: commit d9c61ae9f6 · authored 2026-02-11T13:26:39+01:00 · agent claude-code-recovery · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/ns-basicRelated languages
LLM-contributed programs
Fibonacci Number Generator
Provenance: commit d9c61ae9f6 · authored 2026-02-11T13:26:39+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
100 REM Fibonacci Number Generator
110 REM Data General SBASIC Example
120 PRINT "Fibonacci Number Generator"
130 PRINT "How many numbers to generate";
140 INPUT N
150 IF N < 1 THEN 130
160 LET A = 0
170 LET B = 1
180 PRINT A
190 IF N = 1 THEN 280
200 PRINT B
210 IF N = 2 THEN 280
220 FOR I = 3 TO N
230 LET C = A + B
240 PRINT C
250 LET A = B
260 LET B = C
270 NEXT I
280 PRINT "Done"
290 END
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)