CiscoTheProot/yaml parse test/test.py

9 lines
181 B
Python
Raw Normal View History

from timeit import default_timer as timer
from ctypes import *
proot = CDLL("./fastproot/target/debug/fastproot.dll")
start = timer()
proot.test()
end = timer()
print(end - start)