mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-29 16:37:13 +00:00
15 lines
284 B
Python
15 lines
284 B
Python
|
from __future__ import print_function
|
||
|
import sys
|
||
|
|
||
|
sys.path.append('.')
|
||
|
|
||
|
from example import StringList, print_opaque_list
|
||
|
|
||
|
l = StringList()
|
||
|
l.push_back("Element 1")
|
||
|
l.push_back("Element 2")
|
||
|
print_opaque_list(l)
|
||
|
print("Back element is %s" % l.back())
|
||
|
l.pop_back()
|
||
|
print_opaque_list(l)
|