// Directions: Practice #1-1
// 1) There is an error in the following code block.
// 2) Change the following code to display Hello World.
// 2) Submit your url in Blackboard.
using System;
public class Program
{
public static void Main()
//Added a semicolon to fic the syntax error.
Console.WriteLine("Hello World");
}