9 lines
182 B
Swift
9 lines
182 B
Swift
import AppKit
|
|
import Foundation
|
|
|
|
let app = NSApplication.shared
|
|
let delegate = AppDelegate()
|
|
app.delegate = delegate
|
|
|
|
_ = NSApplicationMain(CommandLine.argc, CommandLine.unsafeArgv)
|