mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 16:23:07 +00:00
12 lines
149 B
Objective-C
12 lines
149 B
Objective-C
#import "Foo.h"
|
|
|
|
@implementation Foo
|
|
|
|
- (NSString *)name
|
|
{
|
|
NSString *str = [[NSString alloc] initWithFormat:@"Zig"];
|
|
return str;
|
|
}
|
|
|
|
@end
|