Ox
1 program
Added 2026-02-08T14:51:34Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 2c8d5f90d1 · authored 2026-02-08T15:52:21+01:00 · agent claude-code · model opus
Sources mentioning this language
6 sources · pl_id:
pl/oxWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| License | proprietary (console version free for academic use) |
|---|---|
| Homepage | http://www.doornik.com/ |
Extensions claimed by this language
3 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 |
|---|---|---|---|
.ox | linguist | primary | 8.5K files |
.oxh | linguist | secondary | 93 files |
.oxo | linguist | secondary | 5.7K files |
LLM-contributed programs
Fibonacci and Matrix Multiplication
Provenance: commit 2c8d5f90d1 · authored 2026-02-08T15:52:21+01:00 · agent claude-code · model opus · WebSearch disabled
#include <oxstd.h>
fib(const n)
{
decl a = 0, b = 1;
for (decl i = 0; i < n; ++i)
{
print(a, " ");
decl temp = a + b;
a = b;
b = temp;
}
println("");
}
main()
{
println("Fibonacci sequence:");
fib(20);
// Matrix operations example
decl mA = < 1, 2; 3, 4 >;
decl mB = < 5, 6; 7, 8 >;
decl mC = mA * mB;
println("Matrix A:");
print(mA);
println("Matrix B:");
print(mB);
println("Matrix A * B:");
print(mC);
}
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.)