mamba 0.3.6

A transpiler which converts Mamba files to Python 3 files
Documentation
b: int = 40

if True:
    print("hello world")

if False:
    "hello"
else:
    "world"

cond: bool = True and False
cond = True or False

if cond:
    "asdf"
    print('hello \"world\"')

    if cond or True:
        "bbb"
    else:
        "ccc"

    iii: str = "iii"
    if cond or False:
        "hhh"
    else:
        iii
else:
    "other"
    print('hello \"world\"')

    if cond or True:
        "bbb"
    else:
        "ccc"

if "as" == "as":
    print("hi")
else:
    print("asdf")