mamba 0.3.6

A transpiler which converts Mamba files to Python 3 files
Documentation
1
2
3
4
5
6
7
8
9
10
11
def b := False
def e := "Hello world"
while b do print(b)

def d := True
while d do
    print(d and False)

    print(d and True)

print("hello")