6 lines
91 B
Swift
6 lines
91 B
Swift
|
|
import Cocoa
|
||
|
|
|
||
|
|
let alert = NSAlert()
|
||
|
|
alert.messageText = "Goodbye, World!"
|
||
|
|
alert.runModal()
|