python-mod 1.0.0

A macro library for including a Python module in Rust. At this point, very imcomplete.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Simple math operations for testing
def add(a, b):
    return a + b

def multiply(x, y):
    return x * y

def fibonacci(n):
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)

# Simple variable
PI = 3.14159