Liberty BASIC
1 program
Added 2026-02-06T14:19:15.775192Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: LB, LibertyBASIC
Provenance: commit 7963a08c1d · authored 2026-02-06T15:19:39+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/liberty-basicWikipedia 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 | event-driven · procedural |
|---|---|
| Typing | dynamic, weak |
| Designed by | Shoptalk Systems · Carl Gundel |
| First appeared | 1992 |
| Influenced by | QuickBASIC |
| License | proprietary |
| Homepage | http://libertybasic.com |
Extensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.bas | wikipedia | proposed | 641.7K files |
.fr3 | wikipedia | proposed | 37.1K files |
Related languages
LLM-contributed programs
Fibonacci Number Generator
Provenance: commit 7963a08c1d · authored 2026-02-06T15:19:39+01:00 · agent claude-code · model sonnet · WebSearch disabled
' Fibonacci Number Generator
' Calculates and displays Fibonacci numbers
input "Enter how many Fibonacci numbers to generate: "; n
a = 0
b = 1
print "Fibonacci sequence:"
print a
if n > 1 then
print b
end if
for i = 3 to n
c = a + b
print c
a = b
b = c
next i
print
print "Done!"
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.)