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

Documents

Language: Oxygene, Platform: Toffee, Category: OS X
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Toffee/OS X/Documents

AppDelegate.pas

namespace Documents;

interface

uses
  AppKit;

type
  [NSApplicationMain]
  [IBObject]
  AppDelegate = class(INSApplicationDelegate)
  public
	method applicationDidFinishLaunching(notification: NSNotification);
  end;

implementation

method AppDelegate.applicationDidFinishLaunching(notification: NSNotification);
begin
end;

end.