Simple, Quality, Awesome Software

Evil Computers

Below is the complete code for the Evil Computers Try It Out! problem.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("I'm sorry, Dave, I'm afraid I can't do that.");
            Console.ReadKey();
        }
    }
}