mirror of
https://github.com/vlang/v.git
synced 2025-08-04 02:07:28 -04:00
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))
|