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
12
13
14
15
def a := 10
def b := 20

def c := a + b
def d := 10 - c
def f := 2.4 * d
def h := f / a
def j := 100 // 10
def l := 100 mod 2
def n := sqrt l
def m := n ^ 100
def o := 6E4

def x := +10
def y := -30