Beispiel #1
0
 public static void PrintSyntaxTree(SyntaxTreeNode root)
 {
     Console.WriteLine("Started to print syntax tree!");
     PrintSyntaxTree(root, 0);
     Console.WriteLine("Finished printing syntax tree!");
 }