RosettaCodeData/Task/Hello-world-Standard-error/Objective-C/hello-world-standard-error.m

10 lines
173 B
Mathematica
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#import <Foundation/Foundation.h>
int main()
{
fprintf(stderr, "Goodbye, World!\n");
fputs("Goodbye, World!\n", stderr);
NSLog(@"Goodbye, World!");
return 0;
}