RosettaCodeData/Task/Sleep/Objective-C/sleep.m

18 lines
290 B
Mathematica
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
#import <Foundation/Foundation.h>
int main()
{
2014-04-02 16:56:35 +00:00
@autoreleasepool {
2013-04-11 01:07:29 -07:00
2014-04-02 16:56:35 +00:00
NSTimeInterval sleeptime;
printf("wait time in seconds: ");
scanf("%f", &sleeptime);
2013-04-11 01:07:29 -07:00
2014-04-02 16:56:35 +00:00
NSLog(@"sleeping...");
[NSThread sleepForTimeInterval: sleeptime];
NSLog(@"awakening...");
2013-04-11 01:07:29 -07:00
2014-04-02 16:56:35 +00:00
}
2013-04-11 01:07:29 -07:00
return 0;
}