mamba 0.3.6

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

if True then print("hello world")
if False then "hello" else "world"

def cond := True and False
cond := True or False

if cond then
    "asdf"
    print("hello \"world\"")

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

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

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

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