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/oxygene
LLM (this repo) · 1PldbLinguistWikipediaHyperpolyglotRosettacodeWikidata · Q910482

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsobject-oriented
Designed byRemObjects Software
First appeared2005
Influenced byDelphi 's Object Pascal · C#
LicenseTrialware
Homepagehttps://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.
ExtensionSourceStrengthSWH
.oxygenelinguistprimary2.0K files

Related languages

Pascal Script (0.21)OxygenBasic (0.15)Objective Caml (0.15)OCaml (0.15)ObjectIcon (0.14)

LLM-contributed programs

Regular Expressions

Provenance: commit 6a1212a613 · authored 2026-02-05T22:24:01+01:00 · agent claude-code · model opus · WebSearch enabled
code.pas · license: GNU Free Documentation License 1.2 · added: 2026-02-05T12:00:00Z
// 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.)

Contribute — propose a file extension

Tell us where to find evidence about Oxygene (mapped to pl/oxygene). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Oxygene/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← OxygenBasic oxyl →