mamba 0.3.6

A transpiler which converts Mamba files to Python 3 files
Documentation
1
2
3
4
5
def fun_a() => print("hello world")
def fun_b(x: Int) => print("hello {x}")

fun_a()
fun_b(123)