Back

Oxygene

Oxygene is an object-oriented programming language that is primarily used for developing applications on the .NET and Mono platforms. It combines the features of Delphi, Object Pascal, and C# to provide a modern and productive development environment.

Hello, world code example:

namespace HelloWorld;
 
interface
 
type
  HelloClass = class
  public
    class method Main; 
  end;
 
implementation
 
class method HelloClass.Main;
begin
  writeLn('Hello world!');
end;
 
end.

Popularity: Less than 1% of developers are using or have used this language.*
*According to StackOverflow's 2023 survey.

Repositories on GitHub: 67