Interfacing C++ and Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
(Created page with "== References == * [http://www.boost.org/doc/libs/release/libs/python/doc interfacing C++ and Python] via Boost == Quick start == * command line under linux :> g++ -c test.cp...")
(No difference)

Revision as of 10:32, 14 October 2011

References

Quick start

  • command line under linux
:> g++ -c test.cpp

<source lang="cpp"> int main () {

  return 0;

} </source>