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
def do_something(x: Int) => print("hello world {x}")

def my_resource := 10

with my_resource as other do
    do_something(other)

with my_resource as yet_another: Int do
    do_something(yet_another)

with my_resource do
    do_something(my_resource)