mamba 0.3.6

A transpiler which converts Mamba files to Python 3 files
Documentation
1
2
3
4
5
6
7
8
def f(x: int) -> int:
    match x:
        case 2:
            return 3
        case 4:
            return 30
        case _:
            return 300