RosettaCodeData/Task/Reverse-a-string/Objective-C/reverse-a-string-4.m

12 lines
144 B
Mathematica
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
int main()
{
2014-04-02 16:56:35 +00:00
@autoreleasepool {
2013-04-10 23:57:08 -07:00
2014-04-02 16:56:35 +00:00
NSString *test = [@"as⃝df̅" reverseString];
2013-04-10 23:57:08 -07:00
2014-04-02 16:56:35 +00:00
NSLog(@"%@", test);
2013-04-10 23:57:08 -07:00
2014-04-02 16:56:35 +00:00
}
2013-04-10 23:57:08 -07:00
return 0;
}