1#include <stdio.h>
2
3int main(int argc, char const *argv[]) {
4 if (argc == 2) { // breakpoint 1
5 printf(format: "Hello %s!\n", argv[1]);
6 } else {
7 printf(format: "Hello World!\n");
8 }
9 return 0;
10}
11

source code of lldb/test/API/tools/lldb-dap/server/main.c