mamba 0.3.6

A transpiler which converts Mamba files to Python 3 files
Documentation
1
2
3
4
from typing import Tuple
x: list[int] = [1, 2, 3]
y: list[str] = ["a", "b", "c"]
xy: list[Tuple[int, str]] = [[(l, m) for l in x if l > 0] for m in y if m != "c"]