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
"""This is my file

It can do many thing
"""

class MyClass:
    """This is my class

    It can do many things
    """

    def my_fun(self) -> int:
        """
        This is my function, it can't do so much
        """
        return 200