4 lines
102 B
Mathematica
4 lines
102 B
Mathematica
|
|
NSAlert *alert = [[NSAlert alloc] init];
|
||
|
|
[alert setMessageText:@"Goodbye, World!"];
|
||
|
|
[alert runModal];
|