bolt/deps/llvm-18.1.8/lldb/test/API/macosx/nslog/main.m

10 lines
175 B
Mathematica
Raw Normal View History

2025-02-14 19:21:04 +01:00
#include <Foundation/Foundation.h>
int main(int argc, char** argv)
{
printf("About to log\n"); // break here
NSLog(@"This is a message from NSLog");
return 0;
}