12 lines
144 B
Mathematica
12 lines
144 B
Mathematica
|
|
int main()
|
||
|
|
{
|
||
|
|
@autoreleasepool {
|
||
|
|
|
||
|
|
NSString *test = [@"as⃝df̅" reverseString];
|
||
|
|
|
||
|
|
NSLog(@"%@", test);
|
||
|
|
|
||
|
|
}
|
||
|
|
return 0;
|
||
|
|
}
|