FutureBasic
1 program
Added 2026-02-10T12:00:00Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: FB
Provenance: commit c7152d855f · authored 2026-02-10T14:29:46+01:00 · agent claude-code · model opus
Sources mentioning this language
5 sources · pl_id:
pl/futurebasicWikipedia 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 | Brilor Software |
| First appeared | mid 1980s |
| License | Freeware |
| Homepage | http://www.brilorsoftware.com/fb/ |
Related languages
LLM-contributed programs
Sieve of Eratosthenes
Provenance: commit c7152d855f · authored 2026-02-10T14:29:46+01:00 · agent claude-code · model opus · WebSearch disabled
local fn SieveOfEratosthenes( limit as long )
dim as Boolean sieve( limit )
long i, j
for i = 2 to limit
sieve(i) = _true
next
for i = 2 to sqr( limit )
if sieve(i) = _true
j = i * i
while j <= limit
sieve(j) = _false
j = j + i
wend
end if
next
for i = 2 to limit
if sieve(i) = _true
print i; " ";
end if
next
print
end fn
fn SieveOfEratosthenes( 100 )
HandleEvents
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.)