9 lines
173 B
Objective-C
9 lines
173 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
int main()
|
|
{
|
|
fprintf(stderr, "Goodbye, World!\n");
|
|
fputs("Goodbye, World!\n", stderr);
|
|
NSLog(@"Goodbye, World!");
|
|
return 0;
|
|
}
|