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
# String operations for testing
def concat_strings(a, b):
    return a + b

def string_length(s):
    return len(s)

def repeat_string(s, n):
    return s * n

# String constant
GREETING = "Hello, World!"