RosettaCodeData/Task/Hello-world-Graphical/Objective-C/hello-world-graphical-1.m
2014-04-02 16:56:35 +00:00

3 lines
102 B
Objective-C

NSAlert *alert = [[NSAlert alloc] init];
[alert setMessageText:@"Goodbye, World!"];
[alert runModal];