langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
1
Task/Hello-world-Text/Objective-C/hello-world-text-1.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-1.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
printf("Goodbye, World!");
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-2.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-2.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
printf("%s", [@"Goodbye, World!" UTF8String]);
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-3.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-3.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
[@"Goodbye, World!" writeToFile:@"/dev/stdout" atomically:NO encoding:NSUTF8StringEncoding error:NULL];
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-4.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-4.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
[[NSFileHandle fileHandleWithStandardOutput] writeData:[@"Goodbye, World!" dataUsingEncoding:NSUTF8StringEncoding]];
|
||||
1
Task/Hello-world-Text/Objective-C/hello-world-text-5.m
Normal file
1
Task/Hello-world-Text/Objective-C/hello-world-text-5.m
Normal file
|
|
@ -0,0 +1 @@
|
|||
NSLog(@"Goodbye, World!");
|
||||
Loading…
Add table
Add a link
Reference in a new issue