Skip to content

Instantly share code, notes, and snippets.

@tuldok89
Created July 4, 2012 05:47
Show Gist options
  • Save tuldok89/3045611 to your computer and use it in GitHub Desktop.
Save tuldok89/3045611 to your computer and use it in GitHub Desktop.
Hello World Python Embed
#include <Python.h>
#include <stdlib.h>
int main()
{
Py_Initialize();
PyRun_SimpleString("print(\"Hello World\")");
system("PAUSE");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment