mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
9 lines
207 B
Objective-C
9 lines
207 B
Objective-C
|
|
///void NSLog(id x);
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
NSString* nsstring2(string s) {
|
|
return [ [ NSString alloc ] initWithBytesNoCopy:s.str length:s.len
|
|
encoding:NSUTF8StringEncoding freeWhenDone: false];
|
|
}
|