mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-12 03:26:08 +00:00
20 lines
369 B
Mathematica
20 lines
369 B
Mathematica
![]() |
#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
|
||
|
}
|
||
|
}
|