Metadata-Version: 2.4
Name: pyrust
Version: 0.1.0
Description-Content-Type: text/plain; charset=UTF-8

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"))

