// Directions: Code Practice 4-1
// Follow the instructions in the comments below, then submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
// 1) Create a string variable called strName within the Main method.
// 2) Assign your name to the variable.
// 3) Console.WriteLine : Output the variable. All that should show on the line is your name: "TJ Spilmanr"
// 4) Console.WriteLine : Output a line using the variable with the following structure : "Hello TJ Spilman"
// 5) Clear out the contents of the name variable. (Use string.Empty)
// 6) Console.WriteLine : Output a line using the variable with the following structure : "Hello "
}