1// This simple program is to test the lldb Python API SBDebugger.2 3int func(int val) {4 return val - 1;5}6 7int main (int argc, char const *argv[]) {8 return func(argc);9}10