mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
3bb4d65b2f
Handle `-e` option in MachO linker allowing the user to set a custom entrypoint address.
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
|