Interfacing C++ and Python

From LPTMS Wiki
Revision as of 10:32, 14 October 2011 by Roux (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

References

Quick start

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

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

  return 0;

} </source>