FoxBASE

1 program Added 2026-02-08T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: FoxBASE+
Provenance: commit 832d754f85 · authored 2026-02-08T18:16:05+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

dBase (0.22)Xbase++ (0.19)XBase (0.19)FoxDot (0.18)XBLite (0.17)

LLM-contributed programs

Customer Database Manager

Provenance: commit 832d754f85 · authored 2026-02-08T18:16:05+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.prg · added: 2026-02-08T12:00:00Z
* FoxBASE program to create and populate a customer database
CLEAR
SET TALK OFF

* Create database structure
CREATE customers
USE customers
APPEND BLANK
REPLACE name WITH "John Smith", city WITH "New York", balance WITH 1500.00
APPEND BLANK
REPLACE name WITH "Jane Doe", city WITH "Los Angeles", balance WITH 2300.50
APPEND BLANK
REPLACE name WITH "Bob Johnson", city WITH "Chicago", balance WITH 875.25

* Display all records
GO TOP
LIST

* Find customers with balance > 1000
? "Customers with balance over $1000:"
GO TOP
DO WHILE .NOT. EOF()
    IF balance > 1000
        ? name, balance
    ENDIF
    SKIP
ENDDO

CLOSE ALL
QUIT

Contribute — propose a file extension

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