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