mamba 0.3.6

A transpiler which converts Mamba files to Python 3 files
Documentation
a: str = "d"

b, bb, bbb = (0, 1, 2)

match (b, bb, bbb):
    case (0, 1, 2):
        print("hello world")

nested: str = "other"

match nested:
    case "a":
        "b"
        "c"
    case "c":
        match nested:
            case "other":
                "even_other"
            case "other_one":
                "better_one"
            case _:
                "default"