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: Hydrogene, Platform: All, Category: Calculator
https://github.com/remobjects/ElementsSamples/tree/master/Hydrogene/All/Calculator/Calculator.OSX

Program.cs

namespace Calculator.OSX
{
	using AppKit;

	public static class Program
	{
		public Int32 Main(Int32 argc, AnsiChar **argv)
		{
			using (__autoreleasepool)
			{
				return NSApplicationMain(argc, argv);
			}
		}
	}
}