mamba 0.3.6

A transpiler which converts Mamba files to Python 3 files
Documentation
1
2
3
4
5
6
def my_fun(a: int, b: int = 10, c: str = "Hello") -> str:
    return c + b + a

my_fun(1, 2, "hello world")
my_fun(1, 2)
my_fun(1)