brintos

brintos / llvm-project-archived public Read only

0
0
Text · 175 B · d806a8d Raw
10 lines · plain
1#include <Foundation/Foundation.h>2 3int main(int argc, char** argv)4{5    printf("About to log\n"); // break here6    NSLog(@"This is a message from NSLog");7 8    return 0;9}10