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