Hello world!
Last updated:
8/21/2020
⁃
Difficulty:
Easy
Write a program in C# that prints Hello world on the screen.
Input
Output
Hello world
Solution
using System;
public class HelloWorld
{
public static void Main(string[] args)
{
Console.Write("Hello World");
}
}