mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-22 21:25:13 +00:00
10 lines
189 B
Python
10 lines
189 B
Python
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
import sys
|
|
sys.path.append('.')
|
|
|
|
from example.issues import print_cchar, print_char
|
|
|
|
print_cchar("const char *")
|
|
print_char('c')
|