def ANSICOLORRESET(): global ansi_escape_use if(ansi_escape_use==1): printf(ansi_reset)
def printansi(color,string): ANSICOLORSET(color) printf(string) ANSICOLORRESET()
def ANSICOLORSET(ANSIcolorToSet): global ansi_escape_use if(ansi_escape_use==1): printf(ANSIcolorToSet)