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-basic
LLM (this repo) · 1PldbRosettacode

Related languages

DG/L (0.29)Nova Assembly (0.29)SmallBASIC (0.28)SuperBASIC (0.25)Pick BASIC (0.24)

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
code.bas · added: 2026-02-11T00:00:00Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about SBASIC (mapped to pl/ns-basic). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/SBASIC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← sba SBCL →