jBASE

1 program Added 2026-02-10T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: jBC, jBASE BASIC
Provenance: commit 0614583d1f · authored 2026-02-10T22:40:33+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/jbc
LLM (this repo) · 1Pldb

Related languages

Just BASIC (0.35)JustBASIC (0.35)BBC BASIC (0.32)True BASIC (0.29)TrueBasic (0.29)

LLM-contributed programs

Customer Record Display

Provenance: commit 0614583d1f · authored 2026-02-10T22:40:33+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-10T12:00:00Z
* Simple customer record management program in jBASE
* This program reads and displays customer information

PROGRAM CUSTOMER.DISPLAY

* Open the customer file
OPEN 'CUSTOMERS' TO F.CUSTOMERS ELSE
    CRT 'Cannot open CUSTOMERS file'
    STOP
END

* Get customer ID from user
CRT 'Enter Customer ID: ':
INPUT CUST.ID

* Read customer record
READ CUST.REC FROM F.CUSTOMERS, CUST.ID ELSE
    CRT 'Customer not found: ':CUST.ID
    STOP
END

* Extract fields from the record
CUST.NAME = CUST.REC<1>
CUST.ADDRESS = CUST.REC<2>
CUST.PHONE = CUST.REC<3>
CUST.BALANCE = CUST.REC<4>

* Display customer information
CRT
CRT 'Customer Information:'
CRT '===================='
CRT 'ID:      ':CUST.ID
CRT 'Name:    ':CUST.NAME
CRT 'Address: ':CUST.ADDRESS
CRT 'Phone:   ':CUST.PHONE
CRT 'Balance: ':CUST.BALANCE

* Close file
CLOSE F.CUSTOMERS

STOP
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 jBASE (mapped to pl/jbc). 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/jBASE/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← jazz JBFM7L →