mamba 0.3.6

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

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