swig/Examples/test-suite/python/lib_std_stream_runme.py
Marcelo Matus 36bfc66486 add iostream test
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6771 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-11-28 09:18:32 +00:00

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)