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