Boo
1 program
Added 2025-10-23T07:08:17Z
Model: deepseek/deepseek-chat-v3-0324Temp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ab95978ccc · authored 2025-10-23T09:08:17+02:00 · model deepseek/deepseek-chat-v3-0324
Sources mentioning this language
8 sources · pl_id:
pl/booWikipedia 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 | object oriented |
|---|---|
| Typing | static, strong, inferred, duck |
| Designed by | Mason Wheeler · Rodrigo B. De Oliveira |
| First appeared | 2003 |
| Influenced by | C# · Python |
| License | BSD 3-Clause |
| Implemented in | C# |
| Homepage | https://github.com/boo-lang |
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 |
|---|---|---|---|
.boo | linguist | primary | 76.9K files |
.boo | pygments | primary | 76.9K files |
Related languages
LLM-contributed programs
Fibonacci sequence generator
Provenance: commit ab95978ccc · authored 2025-10-23T09:08:17+02:00 · model deepseek/deepseek-chat-v3-0324 · Temp 0.4
def fib(n as int) as int:
if n < 2:
return n
return fib(n - 1) + fib(n - 2)
for i in range(0, 10):
print fib(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.)