mamba 0.3.6

A transpiler which converts Mamba files to Python 3 files
Documentation
1
2
3
4
5
6
7
8
9
def factorial(x: int) -> int:
    match x:
        case 0:
            return 1
        case n:
            ans = 1
            for i in range(1, n, 1):
                ans = ans * i
            return ans