mirror of
https://github.com/ziglang/zig.git
synced 2024-12-01 09:32:31 +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
|