git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6771 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
159 B
Python
10 lines
159 B
Python
import lib_std_stream as std
|
|
|
|
std.cout << 2345 << " " << 1.435 << std.endl
|
|
std.endl(std.cout)
|
|
print "hello"
|
|
|
|
a = std.A()
|
|
|
|
print a.bar(2)
|
|
print a.foo(4, a.bar)
|