5 lines
101 B
Python
5 lines
101 B
Python
|
from ctypes import *
|
||
|
so_file="./test.so"
|
||
|
my_functions = CDLL(so_file)
|
||
|
print(my_functions.square(10))
|