12 lines
160 B
Mathematica
12 lines
160 B
Mathematica
|
|
int main()
|
||
|
|
{
|
||
|
|
@autoreleasepool {
|
||
|
|
|
||
|
|
NSString *test = [@"!A string to be reverted!" reverseString];
|
||
|
|
|
||
|
|
NSLog(@"%@", test);
|
||
|
|
|
||
|
|
}
|
||
|
|
return 0;
|
||
|
|
}
|