Oxygene
1 program
Added 2026-02-05T12:00:00Z
Agent: claude-codeModel: opusWebSearch: enabled
Evidence
Report issue
View issues
Aliases: Chrome, RemObjects Oxygene
Provenance: commit 6a1212a613 · authored 2026-02-05T22:24:01+01:00 · agent claude-code · model opus
Sources mentioning this language
7 sources · pl_id:
pl/oxygeneWikipedia 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 | object-oriented |
|---|---|
| Designed by | RemObjects Software |
| First appeared | 2005 |
| Influenced by | Delphi 's Object Pascal · C# |
| License | Trialware |
| Homepage | https://elementscompiler.com/elements/oxygene/ |
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 |
|---|---|---|---|
.oxygene | linguist | primary | 2.0K files |
Related languages
LLM-contributed programs
Regular Expressions
Provenance: commit 6a1212a613 · authored 2026-02-05T22:24:01+01:00 · agent claude-code · model opus · WebSearch enabled
// Match and Replace part of a string using a Regular Expression
//
// Nigel Galloway - April 15th., 2012
//
namespace re;
interface
type
re = class
public
class method Main;
end;
implementation
class method re.Main;
const
myString = 'I think that I am Nigel';
var
r: System.Text.RegularExpressions.Regex;
myResult : String;
begin
r := new System.Text.RegularExpressions.Regex('(I am)|(you are)');
Console.WriteLine("{0} contains {1}", myString, r.Match(myString));
myResult := r.Replace(myString, "you are");
Console.WriteLine("{0} contains {1}", myResult, r.Match(myResult));
end;
end.
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.)