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

Related languages

BASIC-D (0.32)BASICA (0.29)BASIC09 (0.26)BASIC-256 (0.25)BASIC256 (0.25)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 5244aad79a · authored 2026-02-10T20:59:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-10T19:58:30.888308Z
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

Contribute — propose a file extension

Tell us where to find evidence about BASIC-360 (mapped to pl/basic_360). 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/BASIC-360/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← BASIC-256 BASIC-8 →