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
16
17
import math

a: int = 10
b: int = 20

c: int = a + b
d: float = 10 - c
f: float = 2.4 * d
h: float = f / a
j: int = 100 // 10
l: int = 100 % 2
n: float = math.sqrt(l)
m: float = n ** 100
o: int = (6 * 10 ** 4)

x = +10
y = -30