Console.WriteLine("\n\n\n");
static void Parse(string Src)
ENTER("Parse(\"" + Src + "\")");
static void Parse_Glb_Scope()
ENTER("Parse_Glb_Scope()");
RETURN("Parse_Glb_Scope()");
static void ENTER(string Msg)
for(int i=0; i<Level*4; i++)
Console.Write("└--> " + Msg);
static void RETURN(string Msg)
for(int i=0; i<Level*4; i++)
Console.Write(" ┌-< " + Msg);