RosettaCodeData/Task/Hello-world-Graphical/Objective-C/hello-world-graphical-1.m
2023-07-01 13:44:08 -04:00

3 lines
102 B
Objective-C

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