mamba 0.3.6

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

def c := False or True and False
def d := c and b and a
def e := not False

a and b
c or d
not e

def f := True
def g := False
def h := True
def i := True
def j := False

c is d
e isnt f
g isa Exception
i isnta Exception