// This is where we load our .NET class libraries
using System;
// This is where we start our program
public class Program
{
// This is where we tell the program what to run
public static void Main()
//1. Test white space
//Can you add "white space" before Console?
Console.WriteLine("Test A");
//2. Test Multiple commands on the same line.
//What happen if you put the following two commands on the same line?
Console.WriteLine("1");Console.WriteLine("2");
//3. Two types of comments
//Please add a one-line comment and multiple-line comments
//This is a one line comment
/******
*This is a mulitple line comment
*****/
//4. Please print the following information (including the quotes): 'Kelly School of Business'
Console.WriteLine("\'Kelley School of Business\'");
}