Oberon+
1 program
Added 2026-02-07T14:46:10Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: OberonPlus
Provenance: commit 890925a064 · authored 2026-02-07T15:46:50+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/oberonWikipedia 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 | imperative · structured · modular · object-oriented |
|---|---|
| Typing | strong, hybrid (static and dynamic) |
| Designed by | Niklaus Wirth |
| First appeared | 1987 |
| Influenced by | Modula-2 |
| Homepage | https://projectoberon.net |
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 |
|---|---|---|---|
.ob2 | linguist | primary | 4.1K files |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 890925a064 · authored 2026-02-07T15:46:50+01:00 · agent claude-code · model sonnet · WebSearch disabled
MODULE Fibonacci;
IMPORT Out;
PROCEDURE Fib(n: INTEGER): INTEGER;
VAR a, b, temp, i: INTEGER;
BEGIN
a := 0;
b := 1;
i := 0;
WHILE i < n DO
temp := a + b;
a := b;
b := temp;
INC(i);
END;
RETURN a;
END Fib;
BEGIN
Out.String("Fibonacci(10) = ");
Out.Int(Fib(10), 0);
Out.Ln;
END Fibonacci.
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.)