RosettaCodeData/Task/Hello-world-Graphical/Swift/hello-world-graphical.swift
2023-07-01 13:44:08 -04:00

5 lines
91 B
Swift

import Cocoa
let alert = NSAlert()
alert.messageText = "Goodbye, World!"
alert.runModal()