Obliq
1 program
Added 2025-11-12T11:48:30Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 100acd76ee · authored 2025-11-12T12:48:30+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
4 sources · pl_id:
pl/obliqWikipedia 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: imperative · structured · modular · object-oriented · prototype-based · parallel |
|---|---|
| Typing | strong, dynamic |
| Designed by | Krishna Bharat Marc H. Brown Luca Cardelli |
| First appeared | 1993 |
| Influenced by | Modula-3 · Self · Oberon |
| Implemented in | Modula-3 |
| Homepage | http://www.cc.gatech.edu/gvu/people/Phd/Krishna/VO/VOHome.html |
Related languages
LLM-contributed programs
Bank Account Example
Provenance: commit 100acd76ee · authored 2025-11-12T12:48:30+01:00 · model x-ai/grok-4-fast · Temp 0.4
class BankAccount (initialBalance)
balance = ref initialBalance;
method Deposit (amount)
balance := balance + amount;
method Withdraw (amount)
if amount > balance then error "Insufficient funds"
else balance := balance - amount;
method GetBalance () balance end;
end;
let account = new BankAccount (100.0) in
account.Deposit (50.0);
account.Withdraw (30.0);
account.GetBalance ()
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.)