erg_parser 0.6.53

The Erg parser
Documentation
#[
    aa
 #[ aa ]#
aa
]#

a = 1

func() =
    if True, do:
        # aaa
        log "hello"
    # aaa
    1

C = Class()
C.
    # new
    new() =
        C::__new__()
    norm self = None

# create a new instance of C
_ = C.new()