Johnny Chen 82d404c886 Added TestHelloWorld.py which exercises the Python APIs for target, breakpoint,
and process.  Added comment within the file about issues of using LaunchProcess
of SBTarget to launch a process (rdar://problem/8364687).

llvm-svn: 112276
2010-08-27 18:08:58 +00:00

7 lines
107 B
C

#include <stdio.h>
int main(int argc, char const *argv[]) {
printf("Hello world.\n");
return 0;
}