14 lines
374 B
Mathematica
14 lines
374 B
Mathematica
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
int main (int argc, char const *argv[])
|
||
|
{
|
||
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
||
|
|
||
|
NSDate *date1 = [NSDate date];
|
||
|
CFGregorianDate cf_greg_date = CFAbsoluteTimeGetGregorianDate(CFDateGetAbsoluteTime((CFDateRef)date1), NULL);
|
||
|
CFRange cf_range = {4,4};
|
||
|
|
||
|
[pool release]; // Set breakpoint here.
|
||
|
return 0;
|
||
|
}
|