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

Calculator.OSX

Language: Silver, Platform: All, Category: Calculator
https://github.com/remobjects/ElementsSamples/tree/master/Silver/All/Calculator/Calculator.OSX

AppDelegate.swift

import AppKit

@NSApplicationMain @IBObject class AppDelegate : INSApplicationDelegate {

	var mainWindowController: MainWindowController?

	@objc public func applicationDidFinishLaunching(_ notification: NSNotification!) {

		mainWindowController = MainWindowController();
		mainWindowController?.showWindow(nil);
	}

}