Jump to content

Modulinos: Difference between revisions

m
m (→‎{{header|Coffeescript}}: Changed language name)
Line 1,074:
 
int __attribute__((weak)) main(int argc, char **argv) {
@autoreleasepool {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 
printf("Main: The meaning of life is %d\n", [ScriptedMain meaningOfLife]);
 
}
[pool drain];
 
return 0;
Line 1,089:
 
int main(int argc, char **argv) {
@autoreleasepool {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 
printf("Test: The meaning of life is %d\n", [ScriptedMain meaningOfLife]);
 
}
[pool drain];
 
return 0;
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.