mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
4 lines
101 B
Python
4 lines
101 B
Python
from ctypes import *
|
|
so_file="./test.so"
|
|
my_functions = CDLL(so_file)
|
|
print(my_functions.square(10))
|