Basic4GL
1 program
Added 2026-02-27T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Basic for OpenGL
Provenance: commit 98b33fd678 · authored 2026-02-27T20:58:14+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
4 sources · pl_id:
pl/basic4glWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | procedural |
|---|---|
| Designed by | Tom Mulgrew |
| First appeared | 2002 |
| Influenced by | QuickBASIC · GW-BASIC |
| License | GPL (free software) |
| Homepage | https://basic4.sourceforge.net/ |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 98b33fd678 · authored 2026-02-27T20:58:14+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
' Fibonacci sequence in Basic4GL
dim a as integer
dim b as integer
dim c as integer
dim i as integer
a = 0
b = 1
print a
print b
for i = 1 to 8
c = a + b
a = b
b = c
print b
next i
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.)