brintos

brintos / llvm-project-archived public Read only

0
0
Text · 324 B · 8c31dc9 Raw
14 lines · plain
1#include <stdio.h>2#include <stdint.h>3#import <Foundation/Foundation.h>4#import "Foo.h"5 6int main (int argc, char const *argv[])7{8    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];9    Foo *foo = [[Foo alloc] init];10    NSLog (@"foo is %@", foo); // Set breakpoint in main11    [pool release];12    return 0;13}14