15
1
// Directions: Practice #1-1
2
// 1) There is an error in the following code block.
3
// 2) Change the following code to display Hello World.
4
// 2) Submit your url in Blackboard.
5
6
using System;
7
8
9
public class Program
10
{
11
public static void Main()
12
{
13
Console.WriteLine("Hello World")
14
}
15
}
Cached Result
Compilation error (line 13, col 35): ; expected