mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
8 lines
153 B
Python
8 lines
153 B
Python
from ctypes import *
|
|
import os
|
|
|
|
so_file="./test.so"
|
|
if os.name=="nt":
|
|
so_file="./test.dll"
|
|
my_functions = CDLL(so_file)
|
|
print(my_functions.square(10))
|