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

18 lines
290 B
Mathematica
Raw Permalink Normal View History

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