Bosque
1 program
Added 2025-10-27T13:33:51Z
Model: google/gemini-2.5-proTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d6b770e667 · authored 2025-10-27T14:33:51+01:00 · model google/gemini-2.5-pro
Sources mentioning this language
4 sources · pl_id:
pl/bosqueWikipedia 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 | multi-paradigm: functional · typed |
|---|---|
| Designed by | Microsoft · Mark Marron |
| First appeared | 2019 |
| Influenced by | JavaScript · TypeScript · ML |
| License | MIT |
| Homepage | https://www.microsoft.com/en-us/research/project/bosque-programming-language/ |
Extensions claimed by this language
1 claim. 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 |
|---|---|---|---|
.bsq | wikipedia | proposed | 2.2K files |
Related languages
LLM-contributed programs
Tree Sum in Bosque
Provenance: commit d6b770e667 · authored 2025-10-27T14:33:51+01:00 · model google/gemini-2.5-pro · Temp 0.4
namespace NSMain;
concept Tree provides {
root: Node;
}
concept Node provides {
value: Int;
left: Node?;
right: Node?;
}
function sum(t: Tree): Int {
return sum(t.root);
}
function sum(n: Node?): Int {
if(n == none) {
return 0;
}
else {
return n.value + sum(n.left) + sum(n.right);
}
}
entrypoint function main(): Int {
var t: Tree = Tree@{
root: Node@{
value: 5,
left: Node@{
value: 3,
left: none,
right: none
},
right: Node@{
value: 2,
left: Node@{
value: 8,
left: none,
right: none
},
right: none
}
}
};
return sum(t);
}
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.)