Exemplo n.º 1
0
        private void ParseRobotCommand(string inputString)
        {
            CommandSet currentCommandSet = new CommandSet(inputString);

            currentRobot.Go(currentCommandSet.CommandList, currentGrid);
            Console.WriteLine(currentRobot.GetResultString());
        }