RosettaCodeData/Task/Hello-world-Graphical/Swift/hello-world-graphical.swift

6 lines
91 B
Swift
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import Cocoa
let alert = NSAlert()
alert.messageText = "Goodbye, World!"
alert.runModal()