static void Main(string[] args)
        {
            // Print out a banner
            banner.PrintBanner();

            // Primary while loop for the console prompt
            while (true)
            {
                Console.Write(CONSOLE_PROMPT + CONSOLE_LEVEL + PROMPT_CHAR);
                string input = Convert.ToString(Console.ReadLine());

                // Initialize simple parser here
                sp = new SimpleParser(input);
                sp.ParseSource();
            }
        }