Elements. Build native projects for any modern development platform, using the language(s) of your choice. Oxygene (Object Pascal), C#, Swift, Java, Go. | RemObjects Software

LocalXMLDataStore

Language: Oxygene, Platform: Echoes, Category: Windows Forms
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Echoes/Windows Forms/LocalXMLDataStore

Program.pas

namespace LocalXMLDataStore;

interface

type
  Program = public static class
  public
    class method Main;
  end;
  
implementation

uses 
  System.Windows.Forms;

/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
class method Program.Main;
begin
  try
    Application.EnableVisualStyles();
    Application.Run(new MainForm());
  except
    on E: Exception do begin
      MessageBox.Show(E.Message);
    end;
  end;
end;

end.