mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
19 lines
369 B
Objective-C
19 lines
369 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
int main ()
|
|
{
|
|
@autoreleasepool
|
|
{
|
|
struct foo {
|
|
int x;
|
|
int y;
|
|
} myFoo;
|
|
|
|
myFoo.x = 2;
|
|
myFoo.y = 3; // First breakpoint
|
|
|
|
NSString *string = [NSString stringWithFormat:@"%s", "Hello world!"];
|
|
|
|
NSLog(@"%d %@", myFoo.x, string); // Second breakpoint
|
|
}
|
|
}
|