mirror of
https://github.com/RYDE-WORK/pybind11.git
synced 2026-01-20 21:53:42 +08:00
9 lines
161 B
Python
9 lines
161 B
Python
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
import sys
|
|
sys.path.append('.')
|
|
|
|
from example.issues import print_cchar
|
|
|
|
print_cchar("const char *")
|