this repo has no description
at fixPythonPipStalling 23 lines 425 B view raw
1#include <stdio.h> 2#import <Foundation/NSObject.h> 3 4@interface helloclass : NSObject { 5} 6 7+ (void)doHello:(int)a :(int)b :(int)c :(int)d :(int)e :(int)f :(int)g; 8@end 9 10@implementation helloclass 11+ (void)doHello:(int)a :(int)b :(int)c :(int)d :(int)e :(int)f :(int)g 12{ 13 printf("Hello world, %d %d %d %d %d %d %d\n", a, b, c, d, e, f, g); 14} 15@end 16 17int main() 18{ 19 [helloclass doHello:1:2:3:4:5:6:7]; 20 return 0; 21} 22 23