erg_compiler 0.6.53

Centimetre: the Erg compiler
Documentation
.RED = "\x1b[91m"
.GREEN = "\x1b[92m"
.YELLOW = "\x1b[93m"
.BLUE = "\x1b[94m"
.MAGENTA = "\x1b[95m"
.CYAN = "\x1b[96m"
.WHITE = "\x1b[97m"
.BOLD = "\x1b[1m"
.UNDERLINE = "\x1b[4m"
.REVERSED = "\x1b[7m"
.ATTR_RESET = "\x1b[0m"
.RESET = "\x1b[m"

.cprint! *objs, color:=.GREEN =
    print! color, end:=""
    # print! *msg, end:=""
    for! objs, obj =>
        print! obj, end:=" "
    print! .RESET