// Directions: Code Practice 1-2
// 1) Change the following code to display "Hello from <your name>" (ex. Hello from Carolyn Challoner)
// 2) Submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello from Cory Sillars");
}