this is a small library written in rust to use in python

!! YOU NEED A RECENT RUST COMPILER OTHERWISE IT WONT WORK !!

"import pyrust" 

test the library 

import pyrust


for i in range(11):
    print(f"fib({i}) = {pyrust.fib(i)}")

print(pyrust.add(5,5))

print(pyrust.greet("Stranger"))
