diff --git a/doc/tutorial/doc/html/index.html b/doc/tutorial/doc/html/index.html index 5188c77f..53096363 100644 --- a/doc/tutorial/doc/html/index.html +++ b/doc/tutorial/doc/html/index.html @@ -3,21 +3,21 @@
![]() |
Home | Libraries | People | FAQ | More | -
Copyright © 2002-2005 Joel de Guzman, David Abrahams
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt ) @@ -93,10 +93,10 @@ code takes on the look of a kind of declarative interface definition language (IDL).
-Following C/C++ tradition, let's start with the "hello, world". A C++ Function: @@ -112,10 +112,10 @@
#include <boost/python.hpp> -using namespace boost::python; -BOOST_PYTHON_MODULE(hello) +BOOST_PYTHON_MODULE(hello_ext) { + using namespace boost::python; def("greet", greet); }@@ -126,7 +126,7 @@
->>> import hello +>>> import hello_ext >>> print hello.greet() hello, world@@ -136,8 +136,8 @@
- Next stop... Building your Hello World - module from start to finish... + Next stop... Building your Hello World + module from start to finish...
@@ -145,10 +145,10 @@
Last revised: May 18, 2007 at 15:46:01 GMT |
+Last revised: November 04, 2007 at 00:10:08 GMT |