/// <summary>
        /// Prepares the string to compile and sends it to the scanner.
        /// </summary>
        public void SendToCompile()
        {
            textOnConsole.Text = "";
            string errorMessage = CompilingHelper.SendToCompilePlainCode(programText.Text);

            textOnConsole.Text = errorMessage;
        }