BuckleScript
1 program
Added 2026-03-10T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: bs, BuckleScript/OCaml
Provenance: commit a5edd92a04 · authored 2026-03-10T21:34:42+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
4 sources · pl_id:
pl/bucklescriptWikipedia 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 · imperative · modular · object-oriented |
|---|---|
| First appeared | 2020 |
| Influenced by | OCaml · Reason · JavaScript |
| License | MIT |
| Implemented in | OCaml |
| Homepage | https://rescript-lang.org/ |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit a5edd92a04 · authored 2026-03-10T21:34:42+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
(* Fibonacci sequence in BuckleScript *)
let rec fib n =
if n <= 1 then n
else fib (n - 1) + fib (n - 2)
let () =
for i = 0 to 10 do
Js.log (string_of_int (fib i))
done
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.)